Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions docs/AdvisoryGenericEOL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# AdvisoryGenericEOL

advisory.GenericEOL

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**core** | [**AdvisoryGenericEOLCore**](AdvisoryGenericEOLCore.md) | | [optional]
**product** | [**AdvisoryGenericEOLProduct**](AdvisoryGenericEOLProduct.md) | | [optional]
**vc_info** | [**AdvisoryGenericEOLVCInfo**](AdvisoryGenericEOLVCInfo.md) | | [optional]

## Example

```python
from vulncheck_sdk.models.advisory_generic_eol import AdvisoryGenericEOL

# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryGenericEOL from a JSON string
advisory_generic_eol_instance = AdvisoryGenericEOL.from_json(json)
# print the JSON string representation of the object
print(AdvisoryGenericEOL.to_json())

# convert the object into a dict
advisory_generic_eol_dict = advisory_generic_eol_instance.to_dict()
# create an instance of AdvisoryGenericEOL from a dict
advisory_generic_eol_from_dict = AdvisoryGenericEOL.from_dict(advisory_generic_eol_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)


33 changes: 33 additions & 0 deletions docs/AdvisoryGenericEOLCore.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# AdvisoryGenericEOLCore

advisory.GenericEOLCore

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**end_of_life** | **str** | | [optional]
**end_of_sales** | **str** | | [optional]
**end_of_security_support** | **str** | | [optional]
**last_updated** | **str** | | [optional]

## Example

```python
from vulncheck_sdk.models.advisory_generic_eol_core import AdvisoryGenericEOLCore

# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryGenericEOLCore from a JSON string
advisory_generic_eol_core_instance = AdvisoryGenericEOLCore.from_json(json)
# print the JSON string representation of the object
print(AdvisoryGenericEOLCore.to_json())

# convert the object into a dict
advisory_generic_eol_core_dict = advisory_generic_eol_core_instance.to_dict()
# create an instance of AdvisoryGenericEOLCore from a dict
advisory_generic_eol_core_from_dict = AdvisoryGenericEOLCore.from_dict(advisory_generic_eol_core_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)


32 changes: 32 additions & 0 deletions docs/AdvisoryGenericEOLProduct.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# AdvisoryGenericEOLProduct

advisory.GenericEOLProduct

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**product_name** | **str** | | [optional]
**product_version** | **str** | | [optional]
**vendor_name** | **str** | | [optional]

## Example

```python
from vulncheck_sdk.models.advisory_generic_eol_product import AdvisoryGenericEOLProduct

# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryGenericEOLProduct from a JSON string
advisory_generic_eol_product_instance = AdvisoryGenericEOLProduct.from_json(json)
# print the JSON string representation of the object
print(AdvisoryGenericEOLProduct.to_json())

# convert the object into a dict
advisory_generic_eol_product_dict = advisory_generic_eol_product_instance.to_dict()
# create an instance of AdvisoryGenericEOLProduct from a dict
advisory_generic_eol_product_from_dict = AdvisoryGenericEOLProduct.from_dict(advisory_generic_eol_product_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)


31 changes: 31 additions & 0 deletions docs/AdvisoryGenericEOLReference.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# AdvisoryGenericEOLReference

advisory.GenericEOLReference

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**description** | **str** | | [optional]
**url** | **str** | | [optional]

## Example

```python
from vulncheck_sdk.models.advisory_generic_eol_reference import AdvisoryGenericEOLReference

# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryGenericEOLReference from a JSON string
advisory_generic_eol_reference_instance = AdvisoryGenericEOLReference.from_json(json)
# print the JSON string representation of the object
print(AdvisoryGenericEOLReference.to_json())

# convert the object into a dict
advisory_generic_eol_reference_dict = advisory_generic_eol_reference_instance.to_dict()
# create an instance of AdvisoryGenericEOLReference from a dict
advisory_generic_eol_reference_from_dict = AdvisoryGenericEOLReference.from_dict(advisory_generic_eol_reference_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)


35 changes: 35 additions & 0 deletions docs/AdvisoryGenericEOLVCInfo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# AdvisoryGenericEOLVCInfo

advisory.GenericEOLVCInfo

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**cve** | **List[str]** | | [optional]
**date_added** | **str** | | [optional]
**references** | [**List[AdvisoryGenericEOLReference]**](AdvisoryGenericEOLReference.md) | | [optional]
**replacement** | [**AdvisoryGenericEOLProduct**](AdvisoryGenericEOLProduct.md) | | [optional]
**updated_at** | **str** | | [optional]
**version** | **str** | | [optional]

## Example

```python
from vulncheck_sdk.models.advisory_generic_eolvc_info import AdvisoryGenericEOLVCInfo

# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryGenericEOLVCInfo from a JSON string
advisory_generic_eolvc_info_instance = AdvisoryGenericEOLVCInfo.from_json(json)
# print the JSON string representation of the object
print(AdvisoryGenericEOLVCInfo.to_json())

# convert the object into a dict
advisory_generic_eolvc_info_dict = advisory_generic_eolvc_info_instance.to_dict()
# create an instance of AdvisoryGenericEOLVCInfo from a dict
advisory_generic_eolvc_info_from_dict = AdvisoryGenericEOLVCInfo.from_dict(advisory_generic_eolvc_info_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)


1 change: 1 addition & 0 deletions docs/AdvisoryJFrog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Name | Type | Description | Notes
**product** | **str** | | [optional]
**severity** | **str** | | [optional]
**summary** | **str** | | [optional]
**updated_at** | **str** | | [optional]
**url** | **str** | | [optional]
**versions** | **List[str]** | | [optional]

Expand Down
Loading
Loading