-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Update python-sdk Co-authored-by: maddawik <[email protected]>
- Loading branch information
1 parent
4b5a899
commit 4f60f2a
Showing
116 changed files
with
11,525 additions
and
7,097 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# AdvisoryADPContainer | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**affected** | [**List[AdvisoryMAffected]**](AdvisoryMAffected.md) | | [optional] | ||
**date_public** | **str** | OK | [optional] | ||
**descriptions** | [**List[AdvisoryMDescriptions]**](AdvisoryMDescriptions.md) | OK | [optional] | ||
**impacts** | [**List[AdvisoryImpact]**](AdvisoryImpact.md) | OK | [optional] | ||
**metrics** | [**List[AdvisoryMetric]**](AdvisoryMetric.md) | OK | [optional] | ||
**problem_types** | [**List[AdvisoryMProblemTypes]**](AdvisoryMProblemTypes.md) | OK | [optional] | ||
**provider_metadata** | [**AdvisoryMProviderMetadata**](AdvisoryMProviderMetadata.md) | OK | [optional] | ||
**references** | [**List[AdvisoryMReference]**](AdvisoryMReference.md) | | [optional] | ||
**tags** | **List[str]** | OK | [optional] | ||
**title** | **str** | OK | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vulncheck_sdk.models.advisory_adp_container import AdvisoryADPContainer | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AdvisoryADPContainer from a JSON string | ||
advisory_adp_container_instance = AdvisoryADPContainer.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AdvisoryADPContainer.to_json()) | ||
|
||
# convert the object into a dict | ||
advisory_adp_container_dict = advisory_adp_container_instance.to_dict() | ||
# create an instance of AdvisoryADPContainer from a dict | ||
advisory_adp_container_from_dict = AdvisoryADPContainer.from_dict(advisory_adp_container_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) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# AdvisoryAIX | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**cve** | **List[str]** | | [optional] | ||
**cvss_score** | **str** | | [optional] | ||
**cvss_vector** | **str** | | [optional] | ||
**date_added** | **str** | | [optional] | ||
**references** | **List[str]** | | [optional] | ||
**summary** | **str** | | [optional] | ||
**title** | **str** | | [optional] | ||
**url** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vulncheck_sdk.models.advisory_aix import AdvisoryAIX | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AdvisoryAIX from a JSON string | ||
advisory_aix_instance = AdvisoryAIX.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AdvisoryAIX.to_json()) | ||
|
||
# convert the object into a dict | ||
advisory_aix_dict = advisory_aix_instance.to_dict() | ||
# create an instance of AdvisoryAIX from a dict | ||
advisory_aix_from_dict = AdvisoryAIX.from_dict(advisory_aix_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) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# AdvisoryEOLMicrosoft | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**cve** | **List[str]** | | [optional] | ||
**edition** | **str** | | [optional] | ||
**extended_end_date** | **str** | | [optional] | ||
**mainstream_date** | **str** | | [optional] | ||
**product** | **str** | | [optional] | ||
**release** | **str** | | [optional] | ||
**release_end_date** | **str** | | [optional] | ||
**release_start_date** | **str** | | [optional] | ||
**retirement_date** | **str** | | [optional] | ||
**start_date** | **str** | | [optional] | ||
**support_policy** | **str** | | [optional] | ||
**url** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vulncheck_sdk.models.advisory_eol_microsoft import AdvisoryEOLMicrosoft | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AdvisoryEOLMicrosoft from a JSON string | ||
advisory_eol_microsoft_instance = AdvisoryEOLMicrosoft.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AdvisoryEOLMicrosoft.to_json()) | ||
|
||
# convert the object into a dict | ||
advisory_eol_microsoft_dict = advisory_eol_microsoft_instance.to_dict() | ||
# create an instance of AdvisoryEOLMicrosoft from a dict | ||
advisory_eol_microsoft_from_dict = AdvisoryEOLMicrosoft.from_dict(advisory_eol_microsoft_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) | ||
|
||
|
Oops, something went wrong.