Skip to content

Commit 7aba673

Browse files
Update SDK to version v3.84.0
- Generated from OpenAPI spec version v3.84.0 - Auto-generated by GitHub Actions
1 parent 6f0d344 commit 7aba673

59 files changed

Lines changed: 82 additions & 656 deletions

Some content is hidden

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

.sdk-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.82.2
1+
v3.84.0

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ Class | Method | HTTP request | Description
7575
*AnalysesResultsMetadataApi* | [**get_analysis_functions_paginated**](docs/AnalysesResultsMetadataApi.md#get_analysis_functions_paginated) | **GET** /v2/analyses/{analysis_id}/functions | Get functions from analysis
7676
*AnalysesResultsMetadataApi* | [**get_capabilities**](docs/AnalysesResultsMetadataApi.md#get_capabilities) | **GET** /v2/analyses/{analysis_id}/capabilities | Gets the capabilities from the analysis
7777
*AnalysesResultsMetadataApi* | [**get_functions_list**](docs/AnalysesResultsMetadataApi.md#get_functions_list) | **GET** /v2/analyses/{analysis_id}/functions/list | Gets functions from analysis
78-
*AnalysesResultsMetadataApi* | [**get_pdf**](docs/AnalysesResultsMetadataApi.md#get_pdf) | **GET** /v2/analyses/{analysis_id}/pdf | Gets the PDF found in the analysis
7978
*AnalysesResultsMetadataApi* | [**get_sbom**](docs/AnalysesResultsMetadataApi.md#get_sbom) | **GET** /v2/analyses/{analysis_id}/sbom | Gets the software-bill-of-materials (SBOM) found in the analysis
8079
*AnalysesResultsMetadataApi* | [**get_tags**](docs/AnalysesResultsMetadataApi.md#get_tags) | **GET** /v2/analyses/{analysis_id}/tags | Get function tags with maliciousness score
8180
*AnalysesResultsMetadataApi* | [**get_vulnerabilities**](docs/AnalysesResultsMetadataApi.md#get_vulnerabilities) | **GET** /v2/analyses/{analysis_id}/vulnerabilities | Gets the vulnerabilities found in the analysis
@@ -472,7 +471,6 @@ Class | Method | HTTP request | Description
472471
- [ReportEvent](docs/ReportEvent.md)
473472
- [ReportInfo](docs/ReportInfo.md)
474473
- [ReportOptions](docs/ReportOptions.md)
475-
- [RevertOutputBody](docs/RevertOutputBody.md)
476474
- [SBOM](docs/SBOM.md)
477475
- [SBOMPackage](docs/SBOMPackage.md)
478476
- [SandboxOptions](docs/SandboxOptions.md)

docs/APIError.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**var_schema** | **str** | A URL to the JSON Schema for this object. | [optional] [readonly]
98
**error** | [**ErrorBody**](ErrorBody.md) | |
109

1110
## Example

docs/AnalysesResultsMetadataApi.md

Lines changed: 0 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ Method | HTTP request | Description
77
[**get_analysis_functions_paginated**](AnalysesResultsMetadataApi.md#get_analysis_functions_paginated) | **GET** /v2/analyses/{analysis_id}/functions | Get functions from analysis
88
[**get_capabilities**](AnalysesResultsMetadataApi.md#get_capabilities) | **GET** /v2/analyses/{analysis_id}/capabilities | Gets the capabilities from the analysis
99
[**get_functions_list**](AnalysesResultsMetadataApi.md#get_functions_list) | **GET** /v2/analyses/{analysis_id}/functions/list | Gets functions from analysis
10-
[**get_pdf**](AnalysesResultsMetadataApi.md#get_pdf) | **GET** /v2/analyses/{analysis_id}/pdf | Gets the PDF found in the analysis
1110
[**get_sbom**](AnalysesResultsMetadataApi.md#get_sbom) | **GET** /v2/analyses/{analysis_id}/sbom | Gets the software-bill-of-materials (SBOM) found in the analysis
1211
[**get_tags**](AnalysesResultsMetadataApi.md#get_tags) | **GET** /v2/analyses/{analysis_id}/tags | Get function tags with maliciousness score
1312
[**get_vulnerabilities**](AnalysesResultsMetadataApi.md#get_vulnerabilities) | **GET** /v2/analyses/{analysis_id}/vulnerabilities | Gets the vulnerabilities found in the analysis
@@ -267,83 +266,6 @@ Name | Type | Description | Notes
267266

268267
[[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)
269268

270-
# **get_pdf**
271-
> object get_pdf(analysis_id)
272-
273-
Gets the PDF found in the analysis
274-
275-
### Example
276-
277-
* Api Key Authentication (APIKey):
278-
279-
```python
280-
import revengai
281-
from revengai.rest import ApiException
282-
from pprint import pprint
283-
284-
# Defining the host is optional and defaults to https://api.reveng.ai
285-
# See configuration.py for a list of all supported configuration parameters.
286-
configuration = revengai.Configuration(
287-
host = "https://api.reveng.ai"
288-
)
289-
290-
# The client must configure the authentication and authorization parameters
291-
# in accordance with the API server security policy.
292-
# Examples for each auth method are provided below, use the example that
293-
# satisfies your auth use case.
294-
295-
# Configure API key authorization: APIKey
296-
configuration.api_key['APIKey'] = os.environ["API_KEY"]
297-
298-
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
299-
# configuration.api_key_prefix['APIKey'] = 'Bearer'
300-
301-
# Enter a context with an instance of the API client
302-
with revengai.ApiClient(configuration) as api_client:
303-
# Create an instance of the API class
304-
api_instance = revengai.AnalysesResultsMetadataApi(api_client)
305-
analysis_id = 56 # int |
306-
307-
try:
308-
# Gets the PDF found in the analysis
309-
api_response = api_instance.get_pdf(analysis_id)
310-
print("The response of AnalysesResultsMetadataApi->get_pdf:\n")
311-
pprint(api_response)
312-
except Exception as e:
313-
print("Exception when calling AnalysesResultsMetadataApi->get_pdf: %s\n" % e)
314-
```
315-
316-
317-
318-
### Parameters
319-
320-
321-
Name | Type | Description | Notes
322-
------------- | ------------- | ------------- | -------------
323-
**analysis_id** | **int**| |
324-
325-
### Return type
326-
327-
**object**
328-
329-
### Authorization
330-
331-
[APIKey](../README.md#APIKey)
332-
333-
### HTTP request headers
334-
335-
- **Content-Type**: Not defined
336-
- **Accept**: application/json
337-
338-
### HTTP response details
339-
340-
| Status code | Description | Response headers |
341-
|-------------|-------------|------------------|
342-
**200** | Successful Response | - |
343-
**422** | Invalid request parameters | - |
344-
345-
[[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)
346-
347269
# **get_sbom**
348270
> BaseResponseListSBOM get_sbom(analysis_id)
349271

docs/Basic.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
2222
**base_address** | **int** | |
2323
**binary_uuid** | **str** | | [optional]
2424
**sequencer_version** | **str** | | [optional]
25+
**team_id** | **int** | The team ID of the analysis |
2526

2627
## Example
2728

docs/BatchRenameInputBody.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**var_schema** | **str** | A URL to the JSON Schema for this object. | [optional] [readonly]
98
**functions** | [**List[BatchRenameItem]**](BatchRenameItem.md) | List of functions to rename |
109

1110
## Example

docs/BatchRenameOutputBody.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**var_schema** | **str** | A URL to the JSON Schema for this object. | [optional] [readonly]
98
**renamed_count** | **int** | Number of functions renamed |
109

1110
## Example

docs/CommentsData.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**var_schema** | **str** | A URL to the JSON Schema for this object. | [optional] [readonly]
98
**inline_comments** | [**List[InlineComment]**](InlineComment.md) | Structured inline comments with line numbers |
109
**task_status** | **str** | Task status |
1110

docs/ConfirmToolInputBody.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**var_schema** | **str** | A URL to the JSON Schema for this object. | [optional] [readonly]
98
**approved** | **bool** | Whether the user approves the pending tool call. |
109

1110
## Example

docs/Conversation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**var_schema** | **str** | A URL to the JSON Schema for this object. | [optional] [readonly]
98
**context** | **object** | | [optional]
109
**conversation_uuid** | **str** | |
1110
**created_at** | **datetime** | |

0 commit comments

Comments
 (0)