@@ -924,32 +924,39 @@ Feature: Security Monitoring
924924 Then the response status is 200 The list of notification rules.
925925
926926 @generated @skip @team:DataDog/asm-vm
927- Scenario : List assets SBOMs returns "Bad request: The server cannot process the request due to invalid syntax in the request." response
928- Given operation "ListAssetsSBOMs " enabled
929- And new "ListAssetsSBOMs " request
927+ Scenario : List SBOMs returns "Bad request: The server cannot process the request due to invalid syntax in the request." response
928+ Given operation "ListSBOMs " enabled
929+ And new "ListSBOMs " request
930930 When the request is sent
931931 Then the response status is 400 Bad request: The server cannot process the request due to invalid syntax in the request.
932932
933+ @generated @skip @team:DataDog/asm-vm
934+ Scenario : List SBOMs returns "Not found: asset not found" response
935+ Given operation "ListSBOMs" enabled
936+ And new "ListSBOMs" request
937+ When the request is sent
938+ Then the response status is 404 Not found: asset not found
939+
940+ @generated @skip @team:DataDog/asm-vm
941+ Scenario : List SBOMs returns "OK" response
942+ Given operation "ListSBOMs" enabled
943+ And new "ListSBOMs" request
944+ When the request is sent
945+ Then the response status is 200 OK
946+
933947 @team:DataDog/asm-vm
934948 Scenario : List assets SBOMs returns "Not found: There is no request associated with the provided token." response
935- Given operation "ListAssetsSBOMs " enabled
936- And new "ListAssetsSBOMs " request
949+ Given operation "ListSBOMs " enabled
950+ And new "ListSBOMs " request
937951 And request contains "page[token]" parameter with value "unknown"
938952 And request contains "page[number]" parameter with value 1
939953 When the request is sent
940954 Then the response status is 404 Not found: There is no request associated with the provided token.
941955
942- @generated @skip @team:DataDog/asm-vm
943- Scenario : List assets SBOMs returns "Not found: asset not found" response
944- Given operation "ListAssetsSBOMs" enabled
945- And new "ListAssetsSBOMs" request
946- When the request is sent
947- Then the response status is 404 Not found: asset not found
948-
949956 @team:DataDog/asm-vm
950957 Scenario : List assets SBOMs returns "OK" response
951- Given operation "ListAssetsSBOMs " enabled
952- And new "ListAssetsSBOMs " request
958+ Given operation "ListSBOMs " enabled
959+ And new "ListSBOMs " request
953960 And request contains "filter[package_name]" parameter with value "pandas"
954961 And request contains "filter[asset_type]" parameter with value "Service"
955962 When the request is sent
0 commit comments