-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_v1beta1_note_kind.go
25 lines (22 loc) · 1.47 KB
/
model_v1beta1_note_kind.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
/*
* 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
// V1beta1NoteKind : Kind represents the kinds of notes supported. - NOTE_KIND_UNSPECIFIED: Unknown. - VULNERABILITY: The note and occurrence represent a package vulnerability. - BUILD: The note and occurrence assert build provenance. - IMAGE: This represents an image basis relationship. - PACKAGE: This represents a package installed via a package manager. - DEPLOYMENT: The note and occurrence track deployment events. - DISCOVERY: The note and occurrence track the initial discovery status of a resource. - ATTESTATION: This represents a logical \"role\" that can attest to artifacts.
type V1beta1NoteKind string
// List of v1beta1NoteKind
const (
NOTE_KIND_UNSPECIFIED_V1beta1NoteKind V1beta1NoteKind = "NOTE_KIND_UNSPECIFIED"
VULNERABILITY_V1beta1NoteKind V1beta1NoteKind = "VULNERABILITY"
BUILD_V1beta1NoteKind V1beta1NoteKind = "BUILD"
IMAGE_V1beta1NoteKind V1beta1NoteKind = "IMAGE"
PACKAGE__V1beta1NoteKind V1beta1NoteKind = "PACKAGE"
DEPLOYMENT_V1beta1NoteKind V1beta1NoteKind = "DEPLOYMENT"
DISCOVERY_V1beta1NoteKind V1beta1NoteKind = "DISCOVERY"
ATTESTATION_V1beta1NoteKind V1beta1NoteKind = "ATTESTATION"
)