Skip to content

Commit

Permalink
update docs to flag sbom scan method as experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
tjarrettveracode committed May 8, 2024
1 parent e22611d commit 43b3f4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ _Note_: You can also access these methods from the `ScannerVariables` class.
- `get_sbom_project(project_guid,format(opt),vulnerability(opt))`: generate an SBOM in CycloneDX (default) or SPDX format for the SCA Agent project represented by `project_guid`. Get the `project_guid` from the SCA Agent API (e.g. `get_projects(workspace_guid)`). The following options are available:
- `vulnerability`: if `True`, returns an SBOM containing vulnerability information. Defaults to `True`.
- `dependency` (SPDX only): if `True`, returns an SBOM that includes dependency information. Defaults to `True`.
- `scan_sbom(sbom)`: Scan an SBOM (pass the filename, including absolute path, as the `sbom` parameter) and return an updated SBOM with additional vulnerability and/or licensing information from the Veracode SCA Database.
- `scan_sbom(sbom)`: (EXPERIMENTAL) Scan an SBOM (pass the filename, including absolute path, as the `sbom` parameter) and return an updated SBOM with additional vulnerability and/or licensing information from the Veracode SCA Database.


### Application Info
Expand Down
2 changes: 1 addition & 1 deletion docs/sca.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ _Note_: SCA APIs must be called with a human user, since the SCA Agent APIs do n
- `SBOM().get_for_project(project_guid,format(opt),vulnerability(opt))`: generate an SBOM in CycloneDX (default) or SPDX format for the SCA Agent project represented by `project_guid`. Get the `project_guid` from the SCA Agent API (e.g. `get_projects(workspace_guid)`). The following options are available:
- `vulnerability`: if `True`, returns an SBOM containing vulnerability information. Defaults to `True`.
- `dependency` (SPDX only): if `True`, returns an SBOM that includes dependency information. Defaults to `True`.
- `SBOM().scan(sbom)`: Scan an SBOM (pass the filename, including absolute path, as the `sbom` parameter) and return an updated SBOM with additional vulnerability and/or licensing information from the Veracode SCA Database.
- `SBOM().scan(sbom)`: (EXPERIMENTAL) Scan an SBOM (pass the filename, including absolute path, as the `sbom` parameter) and return an updated SBOM with additional vulnerability and/or licensing information from the Veracode SCA Database.

## Application Info

Expand Down

0 comments on commit 43b3f4c

Please sign in to comment.