Skip to content

Commit f709a40

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit f3350c8 of spec repo
1 parent 9651214 commit f709a40

15 files changed

+196
-9
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "55aea96",
3-
"generated": "2025-08-25 15:33:44.229"
2+
"spec_repo_commit": "f3350c8",
3+
"generated": "2025-08-25 17:12:18.855"
44
}

.generator/schemas/v2/openapi.yaml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46081,7 +46081,7 @@ paths:
4608146081
$ref: '#/components/responses/NotAuthorizedResponse'
4608246082
'429':
4608346083
$ref: '#/components/responses/TooManyRequestsResponse'
46084-
summary: Get AWS Scan Options
46084+
summary: List AWS Scan Options
4608546085
tags:
4608646086
- Agentless Scanning
4608746087
post:
@@ -46133,6 +46133,27 @@ paths:
4613346133
summary: Delete AWS Scan Options
4613446134
tags:
4613546135
- Agentless Scanning
46136+
get:
46137+
description: Fetches the Agentless scan options for an activated account.
46138+
operationId: GetAwsScanOptions
46139+
parameters:
46140+
- $ref: '#/components/parameters/AwsAccountId'
46141+
responses:
46142+
'200':
46143+
content:
46144+
application/json:
46145+
schema:
46146+
$ref: '#/components/schemas/AwsScanOptionsResponse'
46147+
description: OK
46148+
'403':
46149+
$ref: '#/components/responses/NotAuthorizedResponse'
46150+
'404':
46151+
$ref: '#/components/responses/NotFoundResponse'
46152+
'429':
46153+
$ref: '#/components/responses/TooManyRequestsResponse'
46154+
summary: Get AWS Scan Options
46155+
tags:
46156+
- Agentless Scanning
4613646157
patch:
4613746158
description: Update the Agentless scan options for an activated account.
4613846159
operationId: UpdateAwsScanOptions
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2025-08-24T22:54:50.008Z

cassettes/features/v2/agentless_scanning/Get-AWS-Scan-Options-returns-Not-Found-response.yml

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-03-01T20:02:08.552Z
1+
2025-08-24T22:56:14.095Z

cassettes/features/v2/agentless_scanning/Get-AWS-Scan-Options-returns-OK-response.yml

Lines changed: 20 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2025-08-24T22:53:40.600Z

cassettes/features/v2/agentless_scanning/List-AWS-Scan-Options-returns-OK-response.yml

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Get AWS Scan Options returns "OK" response
2+
3+
require "datadog_api_client"
4+
api_instance = DatadogAPIClient::V2::AgentlessScanningAPI.new
5+
6+
# there is a valid "aws_scan_options" in the system
7+
AWS_SCAN_OPTIONS_ID = ENV["AWS_SCAN_OPTIONS_ID"]
8+
p api_instance.get_aws_scan_options(AWS_SCAN_OPTIONS_ID)

examples/v2/agentless-scanning/ListAwsScanOptions.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Get AWS Scan Options returns "OK" response
1+
# List AWS Scan Options returns "OK" response
22

33
require "datadog_api_client"
44
api_instance = DatadogAPIClient::V2::AgentlessScanningAPI.new

0 commit comments

Comments
 (0)