Interface searchSbomParams

interface searchSbomParams {
    assetVersionId: string;
    caseSensitive?: boolean;
    name: string;
    searchMethod?: "EXACT" | "CONTAINS";
    version?: string;
}

Properties

assetVersionId: string

Asset Version ID to search for software components in. If not specified, will search the entire organization.

caseSensitive?: boolean

Whether or not to perform a case sensitive search. Defaults to False.

name: string

Name of the software component to search for.

searchMethod?: "EXACT" | "CONTAINS"

Search method to use. Valid values are "EXACT" and "CONTAINS". Defaults to "EXACT".

version?: string

Version of the software component to search for. If not specified, will search for all versions of the software component.