Skip to content

Commit 8397b1c

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 0a1abb4 of spec repo
1 parent 4c1f6aa commit 8397b1c

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": "1e6c346",
3-
"generated": "2025-08-25 18:45:37.801"
2+
"spec_repo_commit": "0a1abb4",
3+
"generated": "2025-08-26 17:41:36.015"
44
}

.generator/schemas/v2/openapi.yaml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46082,7 +46082,7 @@ paths:
4608246082
$ref: '#/components/responses/NotAuthorizedResponse'
4608346083
'429':
4608446084
$ref: '#/components/responses/TooManyRequestsResponse'
46085-
summary: Get AWS Scan Options
46085+
summary: List AWS Scan Options
4608646086
tags:
4608746087
- Agentless Scanning
4608846088
post:
@@ -46134,6 +46134,27 @@ paths:
4613446134
summary: Delete AWS Scan Options
4613546135
tags:
4613646136
- Agentless Scanning
46137+
get:
46138+
description: Fetches the Agentless scan options for an activated account.
46139+
operationId: GetAwsScanOptions
46140+
parameters:
46141+
- $ref: '#/components/parameters/AwsAccountId'
46142+
responses:
46143+
'200':
46144+
content:
46145+
application/json:
46146+
schema:
46147+
$ref: '#/components/schemas/AwsScanOptionsResponse'
46148+
description: OK
46149+
'403':
46150+
$ref: '#/components/responses/NotAuthorizedResponse'
46151+
'404':
46152+
$ref: '#/components/responses/NotFoundResponse'
46153+
'429':
46154+
$ref: '#/components/responses/TooManyRequestsResponse'
46155+
summary: Get AWS Scan Options
46156+
tags:
46157+
- Agentless Scanning
4613746158
patch:
4613846159
description: Update the Agentless scan options for an activated account.
4613946160
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)