-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_package_distribution.go
26 lines (24 loc) · 1.22 KB
/
model_package_distribution.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
* proto/v1beta1/grafeas.proto
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* API version: version not set
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package gofeas
// This represents a particular channel of distribution for a given package. E.g., Debian's jessie-backports dpkg mirror.
type PackageDistribution struct {
// Required. The cpe_uri in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.
CpeUri string `json:"cpe_uri,omitempty"`
// The CPU architecture for which packages in this distribution channel were built.
Architecture *PackageArchitecture `json:"architecture,omitempty"`
// The latest available version of this package in this distribution channel.
LatestVersion *PackageVersion `json:"latest_version,omitempty"`
// A freeform string denoting the maintainer of this package.
Maintainer string `json:"maintainer,omitempty"`
// The distribution channel-specific homepage for this package.
Url string `json:"url,omitempty"`
// The distribution channel-specific description of this package.
Description string `json:"description,omitempty"`
}