All URIs are relative to https://api.reveng.ai
| Method | HTTP request | Description |
|---|---|---|
| GetDynamicExecutionStatus | Get /v2/analyses/{analysis_id}/dynamic-execution/status | Get the status of a dynamic execution task |
| GetNetworkOverview | Get /v2/analyses/{analysis_id}/dynamic-execution/network-overview | Get the dynamic execution results for network overview |
| GetProcessDump | Get /v2/analyses/{analysis_id}/dynamic-execution/process-dumps/{dump_name} | Get the dynamic execution results for a specific process dump |
| GetProcessDumps | Get /v2/analyses/{analysis_id}/dynamic-execution/process-dumps | Get the dynamic execution results for process dumps |
| GetProcessRegistry | Get /v2/analyses/{analysis_id}/dynamic-execution/process-registry | Get the dynamic execution results for process registry |
| GetProcessTree | Get /v2/analyses/{analysis_id}/dynamic-execution/process-tree | Get the dynamic execution results for process tree |
| GetTtps | Get /v2/analyses/{analysis_id}/dynamic-execution/ttps | Get the dynamic execution results for ttps |
BaseResponseDynamicExecutionStatus GetDynamicExecutionStatus(ctx, analysisId).Execute()
Get the status of a dynamic execution task
package main
import (
"context"
"fmt"
"os"
revengai "github.com/RevEngAI/sdk-go/v3"
)
func main() {
analysisId := int32(56) // int32 |
configuration := revengai.NewConfiguration()
apiClient := revengai.NewAPIClient(configuration)
resp, r, err := apiClient.AnalysesDynamicExecutionAPI.GetDynamicExecutionStatus(context.Background(), analysisId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AnalysesDynamicExecutionAPI.GetDynamicExecutionStatus``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetDynamicExecutionStatus`: BaseResponseDynamicExecutionStatus
fmt.Fprintf(os.Stdout, "Response from `AnalysesDynamicExecutionAPI.GetDynamicExecutionStatus`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| analysisId | int32 |
Other parameters are passed through a pointer to a apiGetDynamicExecutionStatusRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
BaseResponseDynamicExecutionStatus
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BaseResponseNetworkOverviewResponse GetNetworkOverview(ctx, analysisId).Execute()
Get the dynamic execution results for network overview
package main
import (
"context"
"fmt"
"os"
revengai "github.com/RevEngAI/sdk-go/v3"
)
func main() {
analysisId := int32(56) // int32 |
configuration := revengai.NewConfiguration()
apiClient := revengai.NewAPIClient(configuration)
resp, r, err := apiClient.AnalysesDynamicExecutionAPI.GetNetworkOverview(context.Background(), analysisId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AnalysesDynamicExecutionAPI.GetNetworkOverview``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetNetworkOverview`: BaseResponseNetworkOverviewResponse
fmt.Fprintf(os.Stdout, "Response from `AnalysesDynamicExecutionAPI.GetNetworkOverview`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| analysisId | int32 |
Other parameters are passed through a pointer to a apiGetNetworkOverviewRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
BaseResponseNetworkOverviewResponse
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
interface{} GetProcessDump(ctx, analysisId, dumpName).Execute()
Get the dynamic execution results for a specific process dump
package main
import (
"context"
"fmt"
"os"
revengai "github.com/RevEngAI/sdk-go/v3"
)
func main() {
analysisId := int32(56) // int32 |
dumpName := "dumpName_example" // string |
configuration := revengai.NewConfiguration()
apiClient := revengai.NewAPIClient(configuration)
resp, r, err := apiClient.AnalysesDynamicExecutionAPI.GetProcessDump(context.Background(), analysisId, dumpName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AnalysesDynamicExecutionAPI.GetProcessDump``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetProcessDump`: interface{}
fmt.Fprintf(os.Stdout, "Response from `AnalysesDynamicExecutionAPI.GetProcessDump`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| analysisId | int32 | ||
| dumpName | string |
Other parameters are passed through a pointer to a apiGetProcessDumpRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
interface{}
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BaseResponseProcessDumps GetProcessDumps(ctx, analysisId).Execute()
Get the dynamic execution results for process dumps
package main
import (
"context"
"fmt"
"os"
revengai "github.com/RevEngAI/sdk-go/v3"
)
func main() {
analysisId := int32(56) // int32 |
configuration := revengai.NewConfiguration()
apiClient := revengai.NewAPIClient(configuration)
resp, r, err := apiClient.AnalysesDynamicExecutionAPI.GetProcessDumps(context.Background(), analysisId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AnalysesDynamicExecutionAPI.GetProcessDumps``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetProcessDumps`: BaseResponseProcessDumps
fmt.Fprintf(os.Stdout, "Response from `AnalysesDynamicExecutionAPI.GetProcessDumps`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| analysisId | int32 |
Other parameters are passed through a pointer to a apiGetProcessDumpsRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BaseResponseProcessRegistry GetProcessRegistry(ctx, analysisId).Execute()
Get the dynamic execution results for process registry
package main
import (
"context"
"fmt"
"os"
revengai "github.com/RevEngAI/sdk-go/v3"
)
func main() {
analysisId := int32(56) // int32 |
configuration := revengai.NewConfiguration()
apiClient := revengai.NewAPIClient(configuration)
resp, r, err := apiClient.AnalysesDynamicExecutionAPI.GetProcessRegistry(context.Background(), analysisId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AnalysesDynamicExecutionAPI.GetProcessRegistry``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetProcessRegistry`: BaseResponseProcessRegistry
fmt.Fprintf(os.Stdout, "Response from `AnalysesDynamicExecutionAPI.GetProcessRegistry`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| analysisId | int32 |
Other parameters are passed through a pointer to a apiGetProcessRegistryRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BaseResponseProcessTree GetProcessTree(ctx, analysisId).Execute()
Get the dynamic execution results for process tree
package main
import (
"context"
"fmt"
"os"
revengai "github.com/RevEngAI/sdk-go/v3"
)
func main() {
analysisId := int32(56) // int32 |
configuration := revengai.NewConfiguration()
apiClient := revengai.NewAPIClient(configuration)
resp, r, err := apiClient.AnalysesDynamicExecutionAPI.GetProcessTree(context.Background(), analysisId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AnalysesDynamicExecutionAPI.GetProcessTree``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetProcessTree`: BaseResponseProcessTree
fmt.Fprintf(os.Stdout, "Response from `AnalysesDynamicExecutionAPI.GetProcessTree`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| analysisId | int32 |
Other parameters are passed through a pointer to a apiGetProcessTreeRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BaseResponseTTPS GetTtps(ctx, analysisId).Execute()
Get the dynamic execution results for ttps
package main
import (
"context"
"fmt"
"os"
revengai "github.com/RevEngAI/sdk-go/v3"
)
func main() {
analysisId := int32(56) // int32 |
configuration := revengai.NewConfiguration()
apiClient := revengai.NewAPIClient(configuration)
resp, r, err := apiClient.AnalysesDynamicExecutionAPI.GetTtps(context.Background(), analysisId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AnalysesDynamicExecutionAPI.GetTtps``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetTtps`: BaseResponseTTPS
fmt.Fprintf(os.Stdout, "Response from `AnalysesDynamicExecutionAPI.GetTtps`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| analysisId | int32 |
Other parameters are passed through a pointer to a apiGetTtpsRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]