Close httplib2 connections.
exportSBOM(name, body=None, x__xgafv=None)
Generates an SBOM and other dependency information for the given resource.
generatePackagesSummary(name, body=None, x__xgafv=None)
Gets a summary of the packages within a given resource.
close()
Close httplib2 connections.
exportSBOM(name, body=None, x__xgafv=None)
Generates an SBOM and other dependency information for the given resource. Args: name: string, Required. The name of the resource in the form of `projects/[PROJECT_ID]/resources/[RESOURCE_URL]`. (required) body: object, The request body. The object takes the form of: { # The request to a call of ExportSBOM } x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # The response from a call to ExportSBOM "discoveryOccurrenceId": "A String", # The name of the discovery occurrence in the form "projects/{project_id}/occurrences/{OCCURRENCE_ID} It can be used to track the progression of the SBOM export. }
generatePackagesSummary(name, body=None, x__xgafv=None)
Gets a summary of the packages within a given resource. Args: name: string, Required. The name of the resource to get a packages summary for in the form of `projects/[PROJECT_ID]/resources/[RESOURCE_URL]`. (required) body: object, The request body. The object takes the form of: { # GeneratePackagesSummaryRequest is the request body for the GeneratePackagesSummary API method. It just takes a single name argument, referring to the resource. } x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # A summary of the packages found within the given resource. "licensesSummary": [ # A listing by license name of each of the licenses and their counts. { # Per license count "count": "A String", # The number of fixable vulnerabilities associated with this resource. "license": "A String", # The license of the package. Note that the format of this value is not guaranteed. It may be nil, an empty string, a boolean value (A | B), a differently formed boolean value (A OR B), etc... }, ], "resourceUrl": "A String", # The unique URL of the image or the container for which this summary applies. }