Skip to content
Closed
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
86 changes: 79 additions & 7 deletions config/_default/menus/api.en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5311,7 +5311,7 @@ menu:
operationids:
- GetAwsOnDemandTask
unstable: []
order: 7
order: 18
- name: Post an AWS on demand task
url: '#post-an-aws-on-demand-task'
identifier: agentless-scanning-post-an-aws-on-demand-task
Expand All @@ -5323,7 +5323,7 @@ menu:
operationids:
- CreateAwsOnDemandTask
unstable: []
order: 8
order: 17
- name: Get AWS On Demand tasks
url: '#get-aws-on-demand-tasks'
identifier: agentless-scanning-get-aws-on-demand-tasks
Expand All @@ -5335,7 +5335,67 @@ menu:
operationids:
- ListAwsOnDemandTasks
unstable: []
order: 6
order: 16
- name: Patch GCP Scan Options
url: '#patch-gcp-scan-options'
identifier: agentless-scanning-patch-gcp-scan-options
parent: agentless-scanning
generated: true
params:
versions:
- v2
operationids:
- UpdateGcpScanOptions
unstable: []
order: 14
- name: Get GCP scan options
url: '#get-gcp-scan-options'
identifier: agentless-scanning-get-gcp-scan-options
parent: agentless-scanning
generated: true
params:
versions:
- v2
operationids:
- GetGcpScanOptions
unstable: []
order: 13
- name: Delete GCP Scan Options
url: '#delete-gcp-scan-options'
identifier: agentless-scanning-delete-gcp-scan-options
parent: agentless-scanning
generated: true
params:
versions:
- v2
operationids:
- DeleteGcpScanOptions
unstable: []
order: 15
- name: Post GCP Scan Options
url: '#post-gcp-scan-options'
identifier: agentless-scanning-post-gcp-scan-options
parent: agentless-scanning
generated: true
params:
versions:
- v2
operationids:
- CreateGcpScanOptions
unstable: []
order: 12
- name: List GCP Scan Options
url: '#list-gcp-scan-options'
identifier: agentless-scanning-list-gcp-scan-options
parent: agentless-scanning
generated: true
params:
versions:
- v2
operationids:
- ListGcpScanOptions
unstable: []
order: 11
- name: Update azure scan options
url: '#update-azure-scan-options'
identifier: agentless-scanning-update-azure-scan-options
Expand All @@ -5348,6 +5408,18 @@ menu:
- UpdateAzureScanOptions
unstable: []
order: 9
- name: Get Azure scan options
url: '#get-azure-scan-options'
identifier: agentless-scanning-get-azure-scan-options
parent: agentless-scanning
generated: true
params:
versions:
- v2
operationids:
- GetAzureScanOptions
unstable: []
order: 8
- name: Delete azure scan options
url: '#delete-azure-scan-options'
identifier: agentless-scanning-delete-azure-scan-options
Expand All @@ -5371,7 +5443,7 @@ menu:
operationids:
- CreateAzureScanOptions
unstable: []
order: 11
order: 7
- name: List azure scan options
url: '#list-azure-scan-options'
identifier: agentless-scanning-list-azure-scan-options
Expand All @@ -5383,7 +5455,7 @@ menu:
operationids:
- ListAzureScanOptions
unstable: []
order: 12
order: 6
- name: Patch AWS Scan Options
url: '#patch-aws-scan-options'
identifier: agentless-scanning-patch-aws-scan-options
Expand All @@ -5407,7 +5479,7 @@ menu:
operationids:
- GetAwsScanOptions
unstable: []
order: 2
order: 3
- name: Delete AWS Scan Options
url: '#delete-aws-scan-options'
identifier: agentless-scanning-delete-aws-scan-options
Expand All @@ -5431,7 +5503,7 @@ menu:
operationids:
- CreateAwsScanOptions
unstable: []
order: 3
order: 2
- name: List AWS Scan Options
url: '#list-aws-scan-options'
identifier: agentless-scanning-list-aws-scan-options
Expand Down
339 changes: 332 additions & 7 deletions content/en/api/v2/agentless-scanning/examples.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"data": {
"id": "new-project",
"type": "gcp_scan_options",
"attributes": {
"vuln_host_os": true,
"vuln_containers_os": true
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"data": {
"id": "api-spec-test",
"type": "gcp_scan_options",
"attributes": {
"vuln_containers_os": false
}
}
}
14 changes: 14 additions & 0 deletions data/api/v2/CodeExamples.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,20 @@
"description": "Patch AWS Scan Options returns \"No Content\" response"
}
],
"UpdateGcpScanOptions": [
{
"group": "agentless_scanning",
"suffix": "",
"description": "Patch GCP Scan Options returns \"OK\" response"
}
],
"CreateGcpScanOptions": [
{
"group": "agentless_scanning",
"suffix": "",
"description": "Post GCP Scan Options returns \"Agentless scan options enabled successfully.\" response"
}
],
"CreateAwsOnDemandTask": [
{
"group": "agentless_scanning",
Expand Down
Loading
Loading