Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Revert GetSBOM to x-unstable #2048

Merged
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-02-12 18:33:45.250628",
"spec_repo_commit": "6a4cfb82"
"regenerated": "2025-02-14 15:03:44.521676",
"spec_repo_commit": "a739b49f"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-12 18:33:45.266253",
"spec_repo_commit": "6a4cfb82"
"regenerated": "2025-02-14 15:03:44.537023",
"spec_repo_commit": "a739b49f"
}
}
}
3 changes: 3 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45225,6 +45225,9 @@ paths:
summary: Get SBOM
tags:
- Security Monitoring
x-unstable: '**Note**: This endpoint is a private preview.

If you are interested in accessing this API, please [fill out this form](https://forms.gle/kMYC1sDr6WDUBDsx9).'
/api/v2/security/signals/notification_rules:
get:
description: Returns the list of notification rules for security signals.
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"2025-01-31T12:04:00.490Z"
"2025-02-10T11:40:12.098Z"
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
"url": "https://api.datadoghq.com/api/v2/security/sboms/Host?filter%5Basset_name%5D=unknown-host"
},
"response": {
"bodySize": 112,
"bodySize": 127,
"content": {
"mimeType": "application/vnd.api+json",
"size": 112,
"text": "{\"errors\":[{\"title\":\"Asset not found\",\"detail\":\"asset_type: 'Host' with asset_name: 'unknown-host' not found\"}]}"
"size": 127,
"text": "{\"errors\":[{\"status\":\"404\",\"title\":\"Asset not found\",\"detail\":\"asset_type: 'Host' with asset_name: 'unknown-host' not found\"}]}"
},
"cookies": [],
"headers": [
Expand All @@ -54,8 +54,8 @@
"status": 404,
"statusText": "Not Found"
},
"startedDateTime": "2025-01-31T12:04:00.501Z",
"time": 1317
"startedDateTime": "2025-02-10T11:40:12.494Z",
"time": 314
}
],
"pages": [],
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"2025-01-31T12:04:14.913Z"
"2025-02-10T11:38:04.662Z"

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions examples/v2/security-monitoring/GetSBOM.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import { client, v2 } from "@datadog/datadog-api-client";

const configuration = client.createConfiguration();
configuration.unstableOperations["v2.getSBOM"] = true;
const apiInstance = new v2.SecurityMonitoringApi(configuration);

const params: v2.SecurityMonitoringApiGetSBOMRequest = {
Expand Down
9 changes: 6 additions & 3 deletions features/v2/security_monitoring.feature
Original file line number Diff line number Diff line change
Expand Up @@ -457,23 +457,26 @@ Feature: Security Monitoring

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

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

@team:DataDog/asm-vm
Scenario: Get SBOM returns "OK" response
Given new "GetSBOM" request
Given operation "GetSBOM" enabled
And new "GetSBOM" request
And request contains "asset_type" parameter with value "Repository"
And request contains "filter[asset_name]" parameter with value "github.com/datadog/datadog-agent"
When the request is sent
Expand Down
1 change: 1 addition & 0 deletions packages/datadog-api-client-common/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ export function createConfiguration(
"v2.getFinding": false,
"v2.getHistoricalJob": false,
"v2.getRuleVersionHistory": false,
"v2.getSBOM": false,
"v2.listFindings": false,
"v2.listHistoricalJobs": false,
"v2.muteFindings": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1021,6 +1021,11 @@ export class SecurityMonitoringApiRequestFactory extends BaseAPIRequestFactory {
): Promise<RequestContext> {
const _config = _options || this.configuration;

logger.warn("Using unstable operation 'getSBOM'");
if (!_config.unstableOperations["v2.getSBOM"]) {
throw new Error("Unstable operation 'getSBOM' is disabled");
}

// verify required parameter 'assetType' is not null or undefined
if (assetType === null || assetType === undefined) {
throw new RequiredError("assetType", "getSBOM");
Expand Down