Skip to content

Commit 7b78cf2

Browse files
Update Python SDK (#160)
[bot](2026-04-01 12:20:45) Sync SDK with OpenAPI spec Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3add65a commit 7b78cf2

55 files changed

Lines changed: 11609 additions & 6385 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/AdvisoryGenericEOL.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# AdvisoryGenericEOL
2+
3+
advisory.GenericEOL
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**core** | [**AdvisoryGenericEOLCore**](AdvisoryGenericEOLCore.md) | | [optional]
10+
**product** | [**AdvisoryGenericEOLProduct**](AdvisoryGenericEOLProduct.md) | | [optional]
11+
**vc_info** | [**AdvisoryGenericEOLVCInfo**](AdvisoryGenericEOLVCInfo.md) | | [optional]
12+
13+
## Example
14+
15+
```python
16+
from vulncheck_sdk.models.advisory_generic_eol import AdvisoryGenericEOL
17+
18+
# TODO update the JSON string below
19+
json = "{}"
20+
# create an instance of AdvisoryGenericEOL from a JSON string
21+
advisory_generic_eol_instance = AdvisoryGenericEOL.from_json(json)
22+
# print the JSON string representation of the object
23+
print(AdvisoryGenericEOL.to_json())
24+
25+
# convert the object into a dict
26+
advisory_generic_eol_dict = advisory_generic_eol_instance.to_dict()
27+
# create an instance of AdvisoryGenericEOL from a dict
28+
advisory_generic_eol_from_dict = AdvisoryGenericEOL.from_dict(advisory_generic_eol_dict)
29+
```
30+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
31+
32+

docs/AdvisoryGenericEOLCore.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# AdvisoryGenericEOLCore
2+
3+
advisory.GenericEOLCore
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**end_of_life** | **str** | | [optional]
10+
**end_of_sales** | **str** | | [optional]
11+
**end_of_security_support** | **str** | | [optional]
12+
**last_updated** | **str** | | [optional]
13+
14+
## Example
15+
16+
```python
17+
from vulncheck_sdk.models.advisory_generic_eol_core import AdvisoryGenericEOLCore
18+
19+
# TODO update the JSON string below
20+
json = "{}"
21+
# create an instance of AdvisoryGenericEOLCore from a JSON string
22+
advisory_generic_eol_core_instance = AdvisoryGenericEOLCore.from_json(json)
23+
# print the JSON string representation of the object
24+
print(AdvisoryGenericEOLCore.to_json())
25+
26+
# convert the object into a dict
27+
advisory_generic_eol_core_dict = advisory_generic_eol_core_instance.to_dict()
28+
# create an instance of AdvisoryGenericEOLCore from a dict
29+
advisory_generic_eol_core_from_dict = AdvisoryGenericEOLCore.from_dict(advisory_generic_eol_core_dict)
30+
```
31+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
32+
33+

docs/AdvisoryGenericEOLProduct.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# AdvisoryGenericEOLProduct
2+
3+
advisory.GenericEOLProduct
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**product_name** | **str** | | [optional]
10+
**product_version** | **str** | | [optional]
11+
**vendor_name** | **str** | | [optional]
12+
13+
## Example
14+
15+
```python
16+
from vulncheck_sdk.models.advisory_generic_eol_product import AdvisoryGenericEOLProduct
17+
18+
# TODO update the JSON string below
19+
json = "{}"
20+
# create an instance of AdvisoryGenericEOLProduct from a JSON string
21+
advisory_generic_eol_product_instance = AdvisoryGenericEOLProduct.from_json(json)
22+
# print the JSON string representation of the object
23+
print(AdvisoryGenericEOLProduct.to_json())
24+
25+
# convert the object into a dict
26+
advisory_generic_eol_product_dict = advisory_generic_eol_product_instance.to_dict()
27+
# create an instance of AdvisoryGenericEOLProduct from a dict
28+
advisory_generic_eol_product_from_dict = AdvisoryGenericEOLProduct.from_dict(advisory_generic_eol_product_dict)
29+
```
30+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
31+
32+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# AdvisoryGenericEOLReference
2+
3+
advisory.GenericEOLReference
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**description** | **str** | | [optional]
10+
**url** | **str** | | [optional]
11+
12+
## Example
13+
14+
```python
15+
from vulncheck_sdk.models.advisory_generic_eol_reference import AdvisoryGenericEOLReference
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of AdvisoryGenericEOLReference from a JSON string
20+
advisory_generic_eol_reference_instance = AdvisoryGenericEOLReference.from_json(json)
21+
# print the JSON string representation of the object
22+
print(AdvisoryGenericEOLReference.to_json())
23+
24+
# convert the object into a dict
25+
advisory_generic_eol_reference_dict = advisory_generic_eol_reference_instance.to_dict()
26+
# create an instance of AdvisoryGenericEOLReference from a dict
27+
advisory_generic_eol_reference_from_dict = AdvisoryGenericEOLReference.from_dict(advisory_generic_eol_reference_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+

docs/AdvisoryGenericEOLVCInfo.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# AdvisoryGenericEOLVCInfo
2+
3+
advisory.GenericEOLVCInfo
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**cve** | **List[str]** | | [optional]
10+
**date_added** | **str** | | [optional]
11+
**references** | [**List[AdvisoryGenericEOLReference]**](AdvisoryGenericEOLReference.md) | | [optional]
12+
**replacement** | [**AdvisoryGenericEOLProduct**](AdvisoryGenericEOLProduct.md) | | [optional]
13+
**updated_at** | **str** | | [optional]
14+
**version** | **str** | | [optional]
15+
16+
## Example
17+
18+
```python
19+
from vulncheck_sdk.models.advisory_generic_eolvc_info import AdvisoryGenericEOLVCInfo
20+
21+
# TODO update the JSON string below
22+
json = "{}"
23+
# create an instance of AdvisoryGenericEOLVCInfo from a JSON string
24+
advisory_generic_eolvc_info_instance = AdvisoryGenericEOLVCInfo.from_json(json)
25+
# print the JSON string representation of the object
26+
print(AdvisoryGenericEOLVCInfo.to_json())
27+
28+
# convert the object into a dict
29+
advisory_generic_eolvc_info_dict = advisory_generic_eolvc_info_instance.to_dict()
30+
# create an instance of AdvisoryGenericEOLVCInfo from a dict
31+
advisory_generic_eolvc_info_from_dict = AdvisoryGenericEOLVCInfo.from_dict(advisory_generic_eolvc_info_dict)
32+
```
33+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
34+
35+

docs/AdvisoryJFrog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**product** | **str** | | [optional]
1313
**severity** | **str** | | [optional]
1414
**summary** | **str** | | [optional]
15+
**updated_at** | **str** | | [optional]
1516
**url** | **str** | | [optional]
1617
**versions** | **List[str]** | | [optional]
1718

0 commit comments

Comments
 (0)