You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# @param filter_asset_name [String] The name of the asset for the SBOM request.
1763
1763
# @param opts [Hash] the optional parameters
1764
1764
# @option opts [String] :filter_repo_digest The container image `repo_digest` for the SBOM request. When the requested asset type is 'Image', this filter is mandatory.
1765
+
# @option opts [SBOMFormat] :ext_format The standard of the SBOM.
1765
1766
# @return [Array<(GetSBOMResponse, Integer, Hash)>] GetSBOMResponse data, response status code and response headers
# Get a list of security scanned assets metadata for an organization.
3013
+
#
3014
+
# ### Pagination
3015
+
#
3016
+
# Please review the [Pagination section](#pagination) for the "List Vulnerabilities" endpoint.
3017
+
#
3018
+
# ### Filtering
3019
+
#
3020
+
# Please review the [Filtering section](#filtering) for the "List Vulnerabilities" endpoint.
3021
+
#
3022
+
# ### Metadata
3023
+
#
3024
+
# Please review the [Metadata section](#metadata) for the "List Vulnerabilities" endpoint.
3025
+
#
3026
+
# ### Related endpoints
3027
+
#
3028
+
# This endpoint provides extra metadata for cloud resources that the standard resource endpoints do not expose. To obtain a richer dataset, call this endpoint together with the relevant resource endpoint(s) and merge (join) their results using the resource identifier.
3029
+
#
3030
+
# #### Hosts
3031
+
#
3032
+
# To enrich host data, join the response from the [Hosts](https://docs.datadoghq.com/api/latest/hosts/) endpoint with the response from the scanned-assets-metadata endpoint on the following key fields:
# To enrich host image data, join the response from the [Hosts](https://docs.datadoghq.com/api/latest/hosts/) endpoint with the response from the scanned-assets-metadata endpoint on the following key fields:
3042
+
#
3043
+
# | ENDPOINT | JOIN KEY | TYPE |
3044
+
# | --- | --- | --- |
3045
+
# | [/api/v1/hosts](https://docs.datadoghq.com/api/latest/hosts/) | host_list.tags_by_source["Amazon Web Services"]["image"] | string |
# To enrich container image data, join the response from the [Container Images](https://docs.datadoghq.com/api/latest/container-images/) endpoint with the response from the scanned-assets-metadata endpoint on the following key fields:
failArgumentError,'invalid value for "opts[:"page_number"]" when calling SecurityMonitoringAPI.list_scanned_assets_metadata, must be greater than or equal to 1.'
# If the page `number` is invalid, a `400` response will be returned.
3427
3563
#
3564
+
# The returned `token` remains valid for every request in the pagination sequence. You may send paginated requests in parallel by re-using this `token` and varying only the `page[number]` parameter.
3565
+
#
3428
3566
# ### Filtering
3429
3567
#
3430
3568
# The request can include some filter parameters to filter the data to be retrieved. The format of the filter parameters follows the [JSON:API format](https://jsonapi.org/format/#fetching-filtering): `filter[$prop_name]`, where `prop_name` is the property name in the entity being filtered by.
# The request in some cases can include extensions to update behavior of the endpoint requested. The format of the filter parameters follows the [JSON:API format](https://jsonapi.org/extensions/#extensions): `ext:$extension_name`, where `extension_name` is the name of the modifier that is being applied.
3600
+
#
3601
+
# Extensions can only include one value at the moment: `ext:modifier=value`.
3459
3602
#
3460
3603
# @param opts [Hash] the optional parameters
3461
3604
# @option opts [String] :page_token Its value must come from the `links` section of the response of the first request. Do not manually edit it.
0 commit comments