Skip to content

Commit 41eeadb

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 8bf021d3 of spec repo
1 parent 9e3e5d7 commit 41eeadb

File tree

10 files changed

+38
-13
lines changed

10 files changed

+38
-13
lines changed

.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-02-07 15:58:49.728330",
8-
"spec_repo_commit": "1ff7c087"
7+
"regenerated": "2025-02-10 11:25:21.950008",
8+
"spec_repo_commit": "8bf021d3"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-02-07 15:58:49.745620",
13-
"spec_repo_commit": "1ff7c087"
12+
"regenerated": "2025-02-10 11:25:21.965351",
13+
"spec_repo_commit": "8bf021d3"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -44069,6 +44069,9 @@ paths:
4406944069
summary: Get SBOM
4407044070
tags:
4407144071
- Security Monitoring
44072+
x-unstable: '**Note**: This endpoint is a private preview.
44073+
44074+
If you are interested in accessing this API, please [fill out this form](https://forms.gle/kMYC1sDr6WDUBDsx9).'
4407244075
/api/v2/security/signals/notification_rules:
4407344076
get:
4407444077
description: Returns the list of notification rules for security signals.

examples/v2/security-monitoring/GetSBOM.java

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
public class Example {
1010
public static void main(String[] args) {
1111
ApiClient defaultClient = ApiClient.getDefaultApiClient();
12+
defaultClient.setUnstableOperationEnabled("v2.getSBOM", true);
1213
SecurityMonitoringApi apiInstance = new SecurityMonitoringApi(defaultClient);
1314

1415
try {

src/main/java/com/datadog/api/client/ApiClient.java

+1
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,7 @@ public class ApiClient {
421421
put("v2.deleteHistoricalJob", false);
422422
put("v2.getFinding", false);
423423
put("v2.getHistoricalJob", false);
424+
put("v2.getSBOM", false);
424425
put("v2.listFindings", false);
425426
put("v2.listHistoricalJobs", false);
426427
put("v2.muteFindings", false);

src/main/java/com/datadog/api/client/v2/api/SecurityMonitoringApi.java

+17
Original file line numberDiff line numberDiff line change
@@ -3222,6 +3222,13 @@ public CompletableFuture<GetSBOMResponse> getSBOMAsync(
32223222
public ApiResponse<GetSBOMResponse> getSBOMWithHttpInfo(
32233223
AssetType assetType, String filterAssetName, GetSBOMOptionalParameters parameters)
32243224
throws ApiException {
3225+
// Check if unstable operation is enabled
3226+
String operationId = "getSBOM";
3227+
if (apiClient.isUnstableOperationEnabled("v2." + operationId)) {
3228+
apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId));
3229+
} else {
3230+
throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId));
3231+
}
32253232
Object localVarPostBody = null;
32263233

32273234
// verify the required parameter 'assetType' is set
@@ -3281,6 +3288,16 @@ public ApiResponse<GetSBOMResponse> getSBOMWithHttpInfo(
32813288
*/
32823289
public CompletableFuture<ApiResponse<GetSBOMResponse>> getSBOMWithHttpInfoAsync(
32833290
AssetType assetType, String filterAssetName, GetSBOMOptionalParameters parameters) {
3291+
// Check if unstable operation is enabled
3292+
String operationId = "getSBOM";
3293+
if (apiClient.isUnstableOperationEnabled("v2." + operationId)) {
3294+
apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId));
3295+
} else {
3296+
CompletableFuture<ApiResponse<GetSBOMResponse>> result = new CompletableFuture<>();
3297+
result.completeExceptionally(
3298+
new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)));
3299+
return result;
3300+
}
32843301
Object localVarPostBody = null;
32853302

32863303
// verify the required parameter 'assetType' is set
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-01-31T12:04:00.490Z
1+
2025-02-10T09:34:13.361Z

src/test/resources/cassettes/features/v2/Get_SBOM_returns_Not_found_asset_not_found_response.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"secure": true
1414
},
1515
"httpResponse": {
16-
"body": "{\"errors\":[{\"title\":\"Asset not found\",\"detail\":\"asset_type: 'Host' with asset_name: 'unknown-host' not found\"}]}",
16+
"body": "{\"errors\":[{\"status\":\"404\",\"title\":\"Asset not found\",\"detail\":\"asset_type: 'Host' with asset_name: 'unknown-host' not found\"}]}",
1717
"headers": {
1818
"Content-Type": [
1919
"application/vnd.api+json"
@@ -28,6 +28,6 @@
2828
"timeToLive": {
2929
"unlimited": true
3030
},
31-
"id": "38a1bcdf-a4ed-e274-a765-b12c97f31e6c"
31+
"id": "4c30966b-a565-6350-f941-70e4516e96f1"
3232
}
3333
]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-01-31T12:04:14.913Z
1+
2025-02-10T09:34:48.919Z

src/test/resources/cassettes/features/v2/Get_SBOM_returns_OK_response.json

+2-2
Large diffs are not rendered by default.

src/test/resources/com/datadog/api/client/v2/api/security_monitoring.feature

+6-3
Original file line numberDiff line numberDiff line change
@@ -447,23 +447,26 @@ Feature: Security Monitoring
447447

448448
@generated @skip @team:DataDog/asm-vm
449449
Scenario: Get SBOM returns "Bad request: The server cannot process the request due to invalid syntax in the request." response
450-
Given new "GetSBOM" request
450+
Given operation "GetSBOM" enabled
451+
And new "GetSBOM" request
451452
And request contains "asset_type" parameter from "REPLACE.ME"
452453
And request contains "filter[asset_name]" parameter from "REPLACE.ME"
453454
When the request is sent
454455
Then the response status is 400 Bad request: The server cannot process the request due to invalid syntax in the request.
455456

456457
@team:DataDog/asm-vm
457458
Scenario: Get SBOM returns "Not found: asset not found" response
458-
Given new "GetSBOM" request
459+
Given operation "GetSBOM" enabled
460+
And new "GetSBOM" request
459461
And request contains "asset_type" parameter with value "Host"
460462
And request contains "filter[asset_name]" parameter with value "unknown-host"
461463
When the request is sent
462464
Then the response status is 404 Not found: asset not found
463465

464466
@team:DataDog/asm-vm
465467
Scenario: Get SBOM returns "OK" response
466-
Given new "GetSBOM" request
468+
Given operation "GetSBOM" enabled
469+
And new "GetSBOM" request
467470
And request contains "asset_type" parameter with value "Repository"
468471
And request contains "filter[asset_name]" parameter with value "github.com/datadog/datadog-agent"
469472
When the request is sent

0 commit comments

Comments
 (0)