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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-03-06 16:19:13.185671",
"spec_repo_commit": "1a11ef53"
"regenerated": "2025-03-06 17:12:11.632479",
"spec_repo_commit": "9dd2b6ae"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-03-06 16:19:13.200872",
"spec_repo_commit": "1a11ef53"
"regenerated": "2025-03-06 17:12:11.648786",
"spec_repo_commit": "9dd2b6ae"
}
}
}
18 changes: 14 additions & 4 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4122,6 +4122,8 @@ components:
of EC2 instances, lambda functions, AMI, ECR, RDS and S3 buckets.
example: arn:aws:ec2:us-east-1:727000456123:instance/i-0eabb50529b67a1ba
type: string
required:
- arn
type: object
AwsOnDemandCreateData:
description: Object for a single AWS on demand task.
Expand Down Expand Up @@ -4219,6 +4221,11 @@ components:
description: Indicates if scanning for vulnerabilities in hosts is enabled.
example: true
type: boolean
required:
- lambda
- sensitive_data
- vuln_containers_os
- vuln_host_os
type: object
AwsScanOptionsCreateData:
description: Object for the scan options of a single AWS account.
Expand Down Expand Up @@ -33982,7 +33989,9 @@ paths:
permissions:
- security_monitoring_findings_read
post:
description: Trigger the scan of an AWS resource with a high priority.
description: Trigger the scan of an AWS resource with a high priority. Agentless
scanning must be activated for the AWS account containing the resource to
scan.
operationId: CreateAwsOnDemandTask
requestBody:
content:
Expand Down Expand Up @@ -34015,7 +34024,7 @@ paths:
/api/v2/agentless_scanning/ondemand/aws/{task_id}:
get:
description: Fetch the data of a specific on demand task.
operationId: RetrieveAwsOnDemandTask
operationId: GetAwsOnDemandTask
parameters:
- $ref: '#/components/parameters/OnDemandTaskId'
responses:
Expand Down Expand Up @@ -53068,8 +53077,9 @@ tags:
name: Action Connection
- description: "Datadog Agentless Scanning provides visibility into risks and vulnerabilities\nwithin
your hosts, running containers, and serverless functions\u2014all without\nrequiring
teams to install Agents on every host or where Agents cannot be installed.\nGo
to https://www.datadoghq.com/blog/agentless-scanning/ to learn more."
teams to install Agents on every host or where Agents cannot be installed.\nAgentless
offers also Sensitive Data Scanning capabilities on your storage.\nGo to https://www.datadoghq.com/blog/agentless-scanning/
to learn more."
name: Agentless Scanning
- description: Datadog App Builder provides a low-code solution to rapidly develop
and integrate secure, customized applications into your monitoring stack that
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ public static void main(String[] args) {

try {
AwsOnDemandResponse result =
apiInstance.retrieveAwsOnDemandTask("63d6b4f5-e5d0-4d90-824a-9580f05f026a");
apiInstance.getAwsOnDemandTask("63d6b4f5-e5d0-4d90-824a-9580f05f026a");
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AgentlessScanningApi#retrieveAwsOnDemandTask");
System.err.println("Exception when calling AgentlessScanningApi#getAwsOnDemandTask");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
Expand Down
Loading