Container Analysis API . projects . resources

Instance Methods

close()

Close httplib2 connections.

generatePackagesSummary(name, body=None, x__xgafv=None)

Gets a summary of the packages within a given resource.

Method Details

close()
Close httplib2 connections.
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.
}