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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
/// Metadata for any related URL information.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RelatedUrl {
/// Specific URL associated with the resource.
#[prost(string, tag = "1")]
pub url: ::prost::alloc::string::String,
/// Label to describe usage of the URL.
#[prost(string, tag = "2")]
pub label: ::prost::alloc::string::String,
}
/// Verifiers (e.g. Kritis implementations) MUST verify signatures
/// with respect to the trust anchors defined in policy (e.g. a Kritis policy).
/// Typically this means that the verifier has been configured with a map from
/// `public_key_id` to public key material (and any required parameters, e.g.
/// signing algorithm).
///
/// In particular, verification implementations MUST NOT treat the signature
/// `public_key_id` as anything more than a key lookup hint. The `public_key_id`
/// DOES NOT validate or authenticate a public key; it only provides a mechanism
/// for quickly selecting a public key ALREADY CONFIGURED on the verifier through
/// a trusted channel. Verification implementations MUST reject signatures in any
/// of the following circumstances:
/// * The `public_key_id` is not recognized by the verifier.
/// * The public key that `public_key_id` refers to does not verify the
/// signature with respect to the payload.
///
/// The `signature` contents SHOULD NOT be "attached" (where the payload is
/// included with the serialized `signature` bytes). Verifiers MUST ignore any
/// "attached" payload and only verify signatures with respect to explicitly
/// provided payload (e.g. a `payload` field on the proto message that holds
/// this Signature, or the canonical serialization of the proto message that
/// holds this signature).
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Signature {
/// The content of the signature, an opaque bytestring.
/// The payload that this signature verifies MUST be unambiguously provided
/// with the Signature during verification. A wrapper message might provide
/// the payload explicitly. Alternatively, a message might have a canonical
/// serialization that can always be unambiguously computed to derive the
/// payload.
#[prost(bytes = "vec", tag = "1")]
pub signature: ::prost::alloc::vec::Vec<u8>,
/// The identifier for the public key that verifies this signature.
/// * The `public_key_id` is required.
/// * The `public_key_id` SHOULD be an RFC3986 conformant URI.
/// * When possible, the `public_key_id` SHOULD be an immutable reference,
/// such as a cryptographic digest.
///
/// Examples of valid `public_key_id`s:
///
/// OpenPGP V4 public key fingerprint:
/// * "openpgp4fpr:74FAF3B861BDA0870C7B6DEF607E48D2A663AEEA"
/// See <https://www.iana.org/assignments/uri-schemes/prov/openpgp4fpr> for more
/// details on this scheme.
///
/// RFC6920 digest-named SubjectPublicKeyInfo (digest of the DER
/// serialization):
/// * "ni:///sha-256;cD9o9Cq6LG3jD0iKXqEi_vdjJGecm_iXkbqVoScViaU"
/// * "nih:///sha-256;703f68f42aba2c6de30f488a5ea122fef76324679c9bf89791ba95a1271589a5"
#[prost(string, tag = "2")]
pub public_key_id: ::prost::alloc::string::String,
}
/// MUST match
/// <https://github.com/secure-systems-lab/dsse/blob/master/envelope.proto.> An
/// authenticated message of arbitrary type.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Envelope {
#[prost(bytes = "vec", tag = "1")]
pub payload: ::prost::alloc::vec::Vec<u8>,
#[prost(string, tag = "2")]
pub payload_type: ::prost::alloc::string::String,
#[prost(message, repeated, tag = "3")]
pub signatures: ::prost::alloc::vec::Vec<EnvelopeSignature>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EnvelopeSignature {
#[prost(bytes = "vec", tag = "1")]
pub sig: ::prost::alloc::vec::Vec<u8>,
#[prost(string, tag = "2")]
pub keyid: ::prost::alloc::string::String,
}
/// Kind represents the kinds of notes supported.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum NoteKind {
/// Default value. This value is unused.
Unspecified = 0,
/// The note and occurrence represent a package vulnerability.
Vulnerability = 1,
/// The note and occurrence assert build provenance.
Build = 2,
/// This represents an image basis relationship.
Image = 3,
/// This represents a package installed via a package manager.
Package = 4,
/// The note and occurrence track deployment events.
Deployment = 5,
/// The note and occurrence track the initial discovery status of a resource.
Discovery = 6,
/// This represents a logical "role" that can attest to artifacts.
Attestation = 7,
/// This represents an available package upgrade.
Upgrade = 8,
/// This represents a Compliance Note
Compliance = 9,
/// This represents a DSSE attestation Note
DsseAttestation = 10,
}
// An attestation wrapper with a PGP-compatible signature. This message only
// supports `ATTACHED` signatures, where the payload that is signed is included
// alongside the signature itself in the same file.
/// Note kind that represents a logical attestation "role" or "authority". For
/// example, an organization might have one `Authority` for "QA" and one for
/// "build". This note is intended to act strictly as a grouping mechanism for
/// the attached occurrences (Attestations). This grouping mechanism also
/// provides a security boundary, since IAM ACLs gate the ability for a principle
/// to attach an occurrence to a given note. It also provides a single point of
/// lookup to find all attached attestation occurrences, even if they don't all
/// live in the same project.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttestationNote {
/// Hint hints at the purpose of the attestation authority.
#[prost(message, optional, tag = "1")]
pub hint: ::core::option::Option<attestation_note::Hint>,
}
/// Nested message and enum types in `AttestationNote`.
pub mod attestation_note {
/// This submessage provides human-readable hints about the purpose of the
/// authority. Because the name of a note acts as its resource reference, it is
/// important to disambiguate the canonical name of the Note (which might be a
/// UUID for security purposes) from "readable" names more suitable for debug
/// output. Note that these hints should not be used to look up authorities in
/// security sensitive contexts, such as when looking up attestations to
/// verify.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Hint {
/// Required. The human readable name of this attestation authority, for
/// example "qa".
#[prost(string, tag = "1")]
pub human_readable_name: ::prost::alloc::string::String,
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Jwt {
/// The compact encoding of a JWS, which is always three base64 encoded strings
/// joined by periods. For details, see:
/// <https://tools.ietf.org/html/rfc7515.html#section-3.1>
#[prost(string, tag = "1")]
pub compact_jwt: ::prost::alloc::string::String,
}
/// Occurrence that represents a single "attestation". The authenticity of an
/// attestation can be verified using the attached signature. If the verifier
/// trusts the public key of the signer, then verifying the signature is
/// sufficient to establish trust. In this circumstance, the authority to which
/// this attestation is attached is primarily useful for lookup (how to find
/// this attestation if you already know the authority and artifact to be
/// verified) and intent (for which authority this attestation was intended to
/// sign.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttestationOccurrence {
/// Required. The serialized payload that is verified by one or more
/// `signatures`.
#[prost(bytes = "vec", tag = "1")]
pub serialized_payload: ::prost::alloc::vec::Vec<u8>,
/// One or more signatures over `serialized_payload`. Verifier implementations
/// should consider this attestation message verified if at least one
/// `signature` verifies `serialized_payload`. See `Signature` in common.proto
/// for more details on signature structure and verification.
#[prost(message, repeated, tag = "2")]
pub signatures: ::prost::alloc::vec::Vec<Signature>,
/// One or more JWTs encoding a self-contained attestation.
/// Each JWT encodes the payload that it verifies within the JWT itself.
/// Verifier implementation SHOULD ignore the `serialized_payload` field
/// when verifying these JWTs.
/// If only JWTs are present on this AttestationOccurrence, then the
/// `serialized_payload` SHOULD be left empty.
/// Each JWT SHOULD encode a claim specific to the `resource_uri` of this
/// Occurrence, but this is not validated by Grafeas metadata API
/// implementations. The JWT itself is opaque to Grafeas.
#[prost(message, repeated, tag = "3")]
pub jwts: ::prost::alloc::vec::Vec<Jwt>,
}
/// Common Vulnerability Scoring System version 3.
/// For details, see <https://www.first.org/cvss/specification-document>
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CvsSv3 {
/// The base score is a function of the base metric scores.
#[prost(float, tag = "1")]
pub base_score: f32,
#[prost(float, tag = "2")]
pub exploitability_score: f32,
#[prost(float, tag = "3")]
pub impact_score: f32,
/// Base Metrics
/// Represents the intrinsic characteristics of a vulnerability that are
/// constant over time and across user environments.
#[prost(enumeration = "cvs_sv3::AttackVector", tag = "5")]
pub attack_vector: i32,
#[prost(enumeration = "cvs_sv3::AttackComplexity", tag = "6")]
pub attack_complexity: i32,
#[prost(enumeration = "cvs_sv3::PrivilegesRequired", tag = "7")]
pub privileges_required: i32,
#[prost(enumeration = "cvs_sv3::UserInteraction", tag = "8")]
pub user_interaction: i32,
#[prost(enumeration = "cvs_sv3::Scope", tag = "9")]
pub scope: i32,
#[prost(enumeration = "cvs_sv3::Impact", tag = "10")]
pub confidentiality_impact: i32,
#[prost(enumeration = "cvs_sv3::Impact", tag = "11")]
pub integrity_impact: i32,
#[prost(enumeration = "cvs_sv3::Impact", tag = "12")]
pub availability_impact: i32,
}
/// Nested message and enum types in `CVSSv3`.
pub mod cvs_sv3 {
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum AttackVector {
Unspecified = 0,
Network = 1,
Adjacent = 2,
Local = 3,
Physical = 4,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum AttackComplexity {
Unspecified = 0,
Low = 1,
High = 2,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PrivilegesRequired {
Unspecified = 0,
None = 1,
Low = 2,
High = 3,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum UserInteraction {
Unspecified = 0,
None = 1,
Required = 2,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Scope {
Unspecified = 0,
Unchanged = 1,
Changed = 2,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Impact {
Unspecified = 0,
High = 1,
Low = 2,
None = 3,
}
}
/// This represents a particular channel of distribution for a given package.
/// E.g., Debian's jessie-backports dpkg mirror.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Distribution {
/// Required. The cpe_uri in [CPE format](<https://cpe.mitre.org/specification/>)
/// denoting the package manager version distributing a package.
#[prost(string, tag = "1")]
pub cpe_uri: ::prost::alloc::string::String,
/// The CPU architecture for which packages in this distribution channel were
/// built.
#[prost(enumeration = "Architecture", tag = "2")]
pub architecture: i32,
/// The latest available version of this package in this distribution channel.
#[prost(message, optional, tag = "3")]
pub latest_version: ::core::option::Option<Version>,
/// A freeform string denoting the maintainer of this package.
#[prost(string, tag = "4")]
pub maintainer: ::prost::alloc::string::String,
/// The distribution channel-specific homepage for this package.
#[prost(string, tag = "5")]
pub url: ::prost::alloc::string::String,
/// The distribution channel-specific description of this package.
#[prost(string, tag = "6")]
pub description: ::prost::alloc::string::String,
}
/// An occurrence of a particular package installation found within a system's
/// filesystem. E.g., glibc was found in `/var/lib/dpkg/status`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Location {
/// Required. The CPE URI in [CPE format](<https://cpe.mitre.org/specification/>)
/// denoting the package manager version distributing a package.
#[prost(string, tag = "1")]
pub cpe_uri: ::prost::alloc::string::String,
/// The version installed at this location.
#[prost(message, optional, tag = "2")]
pub version: ::core::option::Option<Version>,
/// The path from which we gathered that this package/version is installed.
#[prost(string, tag = "3")]
pub path: ::prost::alloc::string::String,
}
/// This represents a particular package that is distributed over various
/// channels. E.g., glibc (aka libc6) is distributed by many, at various
/// versions.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PackageNote {
/// Required. Immutable. The name of the package.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The various channels by which a package is distributed.
#[prost(message, repeated, tag = "10")]
pub distribution: ::prost::alloc::vec::Vec<Distribution>,
}
/// Details on how a particular software package was installed on a system.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PackageOccurrence {
/// Output only. The name of the installed package.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Required. All of the places within the filesystem versions of this package
/// have been found.
#[prost(message, repeated, tag = "2")]
pub location: ::prost::alloc::vec::Vec<Location>,
}
/// Version contains structured information about the version of a package.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Version {
/// Used to correct mistakes in the version numbering scheme.
#[prost(int32, tag = "1")]
pub epoch: i32,
/// Required only when version kind is NORMAL. The main part of the version
/// name.
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
/// The iteration of the package build from the above version.
#[prost(string, tag = "3")]
pub revision: ::prost::alloc::string::String,
/// Whether this version is specifying part of an inclusive range. Grafeas
/// does not have the capability to specify version ranges; instead we have
/// fields that specify start version and end versions. At times this is
/// insufficient - we also need to specify whether the version is included in
/// the range or is excluded from the range. This boolean is expected to be set
/// to true when the version is included in a range.
#[prost(bool, tag = "6")]
pub inclusive: bool,
/// Required. Distinguishes between sentinel MIN/MAX versions and normal
/// versions.
#[prost(enumeration = "version::VersionKind", tag = "4")]
pub kind: i32,
/// Human readable version string. This string is of the form
/// <epoch>:<name>-<revision> and is only set when kind is NORMAL.
#[prost(string, tag = "5")]
pub full_name: ::prost::alloc::string::String,
}
/// Nested message and enum types in `Version`.
pub mod version {
/// Whether this is an ordinary package version or a sentinel MIN/MAX version.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum VersionKind {
/// Unknown.
Unspecified = 0,
/// A standard package version.
Normal = 1,
/// A special version representing negative infinity.
Minimum = 2,
/// A special version representing positive infinity.
Maximum = 3,
}
}
/// Instruction set architectures supported by various package managers.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Architecture {
/// Unknown architecture.
Unspecified = 0,
/// X86 architecture.
X86 = 1,
/// X64 architecture.
X64 = 2,
}
/// A security vulnerability that can be found in resources.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct VulnerabilityNote {
/// The CVSS score of this vulnerability. CVSS score is on a scale of 0 - 10
/// where 0 indicates low severity and 10 indicates high severity.
#[prost(float, tag = "1")]
pub cvss_score: f32,
/// The note provider assigned severity of this vulnerability.
#[prost(enumeration = "Severity", tag = "2")]
pub severity: i32,
/// Details of all known distros and packages affected by this vulnerability.
#[prost(message, repeated, tag = "3")]
pub details: ::prost::alloc::vec::Vec<vulnerability_note::Detail>,
/// The full description of the CVSSv3 for this vulnerability.
#[prost(message, optional, tag = "4")]
pub cvss_v3: ::core::option::Option<CvsSv3>,
/// Windows details get their own format because the information format and
/// model don't match a normal detail. Specifically Windows updates are done as
/// patches, thus Windows vulnerabilities really are a missing package, rather
/// than a package being at an incorrect version.
#[prost(message, repeated, tag = "5")]
pub windows_details: ::prost::alloc::vec::Vec<vulnerability_note::WindowsDetail>,
/// The time this information was last changed at the source. This is an
/// upstream timestamp from the underlying information source - e.g. Ubuntu
/// security tracker.
#[prost(message, optional, tag = "6")]
pub source_update_time: ::core::option::Option<::prost_types::Timestamp>,
}
/// Nested message and enum types in `VulnerabilityNote`.
pub mod vulnerability_note {
/// A detail for a distro and package affected by this vulnerability and its
/// associated fix (if one is available).
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Detail {
/// The distro assigned severity of this vulnerability.
#[prost(string, tag = "1")]
pub severity_name: ::prost::alloc::string::String,
/// A vendor-specific description of this vulnerability.
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
/// The type of package; whether native or non native (e.g., ruby gems,
/// node.js packages, etc.).
#[prost(string, tag = "3")]
pub package_type: ::prost::alloc::string::String,
/// Required. The [CPE URI](<https://cpe.mitre.org/specification/>) this
/// vulnerability affects.
#[prost(string, tag = "4")]
pub affected_cpe_uri: ::prost::alloc::string::String,
/// Required. The package this vulnerability affects.
#[prost(string, tag = "5")]
pub affected_package: ::prost::alloc::string::String,
/// The version number at the start of an interval in which this
/// vulnerability exists. A vulnerability can affect a package between
/// version numbers that are disjoint sets of intervals (example:
/// \[1.0.0-1.1.0\], \[2.4.6-2.4.8\] and \[4.5.6-4.6.8\]) each of which will be
/// represented in its own Detail. If a specific affected version is provided
/// by a vulnerability database, affected_version_start and
/// affected_version_end will be the same in that Detail.
#[prost(message, optional, tag = "6")]
pub affected_version_start: ::core::option::Option<super::Version>,
/// The version number at the end of an interval in which this vulnerability
/// exists. A vulnerability can affect a package between version numbers
/// that are disjoint sets of intervals (example: \[1.0.0-1.1.0\],
/// \[2.4.6-2.4.8\] and \[4.5.6-4.6.8\]) each of which will be represented in its
/// own Detail. If a specific affected version is provided by a vulnerability
/// database, affected_version_start and affected_version_end will be the
/// same in that Detail.
#[prost(message, optional, tag = "7")]
pub affected_version_end: ::core::option::Option<super::Version>,
/// The distro recommended [CPE URI](<https://cpe.mitre.org/specification/>)
/// to update to that contains a fix for this vulnerability. It is possible
/// for this to be different from the affected_cpe_uri.
#[prost(string, tag = "8")]
pub fixed_cpe_uri: ::prost::alloc::string::String,
/// The distro recommended package to update to that contains a fix for this
/// vulnerability. It is possible for this to be different from the
/// affected_package.
#[prost(string, tag = "9")]
pub fixed_package: ::prost::alloc::string::String,
/// The distro recommended version to update to that contains a
/// fix for this vulnerability. Setting this to VersionKind.MAXIMUM means no
/// such version is yet available.
#[prost(message, optional, tag = "10")]
pub fixed_version: ::core::option::Option<super::Version>,
/// Whether this detail is obsolete. Occurrences are expected not to point to
/// obsolete details.
#[prost(bool, tag = "11")]
pub is_obsolete: bool,
/// The time this information was last changed at the source. This is an
/// upstream timestamp from the underlying information source - e.g. Ubuntu
/// security tracker.
#[prost(message, optional, tag = "12")]
pub source_update_time: ::core::option::Option<::prost_types::Timestamp>,
/// The source from which the information in this Detail was obtained.
#[prost(string, tag = "13")]
pub source: ::prost::alloc::string::String,
/// The name of the vendor of the product.
#[prost(string, tag = "14")]
pub vendor: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WindowsDetail {
/// Required. The [CPE URI](<https://cpe.mitre.org/specification/>) this
/// vulnerability affects.
#[prost(string, tag = "1")]
pub cpe_uri: ::prost::alloc::string::String,
/// Required. The name of this vulnerability.
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
/// The description of this vulnerability.
#[prost(string, tag = "3")]
pub description: ::prost::alloc::string::String,
/// Required. The names of the KBs which have hotfixes to mitigate this
/// vulnerability. Note that there may be multiple hotfixes (and thus
/// multiple KBs) that mitigate a given vulnerability. Currently any listed
/// KBs presence is considered a fix.
#[prost(message, repeated, tag = "4")]
pub fixing_kbs: ::prost::alloc::vec::Vec<windows_detail::KnowledgeBase>,
}
/// Nested message and enum types in `WindowsDetail`.
pub mod windows_detail {
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct KnowledgeBase {
/// The KB name (generally of the form KB\[0-9\]+ (e.g., KB123456)).
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// A link to the KB in the [Windows update catalog]
/// (<https://www.catalog.update.microsoft.com/>).
#[prost(string, tag = "2")]
pub url: ::prost::alloc::string::String,
}
}
}
/// An occurrence of a severity vulnerability on a resource.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct VulnerabilityOccurrence {
/// The type of package; whether native or non native (e.g., ruby gems, node.js
/// packages, etc.).
#[prost(string, tag = "1")]
pub r#type: ::prost::alloc::string::String,
/// Output only. The note provider assigned severity of this vulnerability.
#[prost(enumeration = "Severity", tag = "2")]
pub severity: i32,
/// Output only. The CVSS score of this vulnerability. CVSS score is on a
/// scale of 0 - 10 where 0 indicates low severity and 10 indicates high
/// severity.
#[prost(float, tag = "3")]
pub cvss_score: f32,
/// The cvss v3 score for the vulnerability.
#[prost(message, optional, tag = "10")]
pub cvssv3: ::core::option::Option<vulnerability_occurrence::Cvssv3>,
/// Required. The set of affected locations and their fixes (if available)
/// within the associated resource.
#[prost(message, repeated, tag = "4")]
pub package_issue: ::prost::alloc::vec::Vec<vulnerability_occurrence::PackageIssue>,
/// Output only. A one sentence description of this vulnerability.
#[prost(string, tag = "5")]
pub short_description: ::prost::alloc::string::String,
/// Output only. A detailed description of this vulnerability.
#[prost(string, tag = "6")]
pub long_description: ::prost::alloc::string::String,
/// Output only. URLs related to this vulnerability.
#[prost(message, repeated, tag = "7")]
pub related_urls: ::prost::alloc::vec::Vec<RelatedUrl>,
/// The distro assigned severity for this vulnerability when it is available,
/// otherwise this is the note provider assigned severity.
///
/// When there are multiple PackageIssues for this vulnerability, they can have
/// different effective severities because some might be provided by the distro
/// while others are provided by the language ecosystem for a language pack.
/// For this reason, it is advised to use the effective severity on the
/// PackageIssue level. In the case where multiple PackageIssues have differing
/// effective severities, this field should be the highest severity for any of
/// the PackageIssues.
#[prost(enumeration = "Severity", tag = "8")]
pub effective_severity: i32,
/// Output only. Whether at least one of the affected packages has a fix
/// available.
#[prost(bool, tag = "9")]
pub fix_available: bool,
}
/// Nested message and enum types in `VulnerabilityOccurrence`.
pub mod vulnerability_occurrence {
/// The CVSS v3 score for this vulnerability.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Cvssv3 {
/// The base score for for this vulnerability according to cvss v3.
#[prost(float, tag = "1")]
pub base_score: f32,
/// The severity rating assigned to this vulnerability by vulnerability
/// provider.
#[prost(enumeration = "super::Severity", tag = "2")]
pub severity: i32,
}
/// A detail for a distro and package this vulnerability occurrence was found
/// in and its associated fix (if one is available).
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PackageIssue {
/// Required. The [CPE URI](<https://cpe.mitre.org/specification/>) this
/// vulnerability was found in.
#[prost(string, tag = "1")]
pub affected_cpe_uri: ::prost::alloc::string::String,
/// Required. The package this vulnerability was found in.
#[prost(string, tag = "2")]
pub affected_package: ::prost::alloc::string::String,
/// Required. The version of the package that is installed on the resource
/// affected by this vulnerability.
#[prost(message, optional, tag = "3")]
pub affected_version: ::core::option::Option<super::Version>,
/// The [CPE URI](<https://cpe.mitre.org/specification/>) this vulnerability
/// was fixed in. It is possible for this to be different from the
/// affected_cpe_uri.
#[prost(string, tag = "4")]
pub fixed_cpe_uri: ::prost::alloc::string::String,
/// The package this vulnerability was fixed in. It is possible for this to
/// be different from the affected_package.
#[prost(string, tag = "5")]
pub fixed_package: ::prost::alloc::string::String,
/// Required. The version of the package this vulnerability was fixed in.
/// Setting this to VersionKind.MAXIMUM means no fix is yet available.
#[prost(message, optional, tag = "6")]
pub fixed_version: ::core::option::Option<super::Version>,
/// Output only. Whether a fix is available for this package.
#[prost(bool, tag = "7")]
pub fix_available: bool,
/// The type of package (e.g. OS, MAVEN, GO).
#[prost(string, tag = "8")]
pub package_type: ::prost::alloc::string::String,
/// The distro or language system assigned severity for this vulnerability
/// when that is available and note provider assigned severity when it is not
/// available.
#[prost(enumeration = "super::Severity", tag = "9")]
pub effective_severity: i32,
}
}
/// Note provider assigned severity/impact ranking.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Severity {
/// Unknown.
Unspecified = 0,
/// Minimal severity.
Minimal = 1,
/// Low severity.
Low = 2,
/// Medium severity.
Medium = 3,
/// High severity.
High = 4,
/// Critical severity.
Critical = 5,
}
// Spec defined at
// <https://github.com/in-toto/attestation/blob/main/spec/predicates/provenance.md>
/// Steps taken to build the artifact.
/// For a TaskRun, typically each container corresponds to one step in the
/// recipe.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Recipe {
/// URI indicating what type of recipe was performed. It determines the meaning
/// of recipe.entryPoint, recipe.arguments, recipe.environment, and materials.
#[prost(string, tag = "1")]
pub r#type: ::prost::alloc::string::String,
/// Index in materials containing the recipe steps that are not implied by
/// recipe.type. For example, if the recipe type were "make", then this would
/// point to the source containing the Makefile, not the make program itself.
/// Set to -1 if the recipe doesn't come from a material, as zero is default
/// unset value for int64.
#[prost(int64, tag = "2")]
pub defined_in_material: i64,
/// String identifying the entry point into the build.
/// This is often a path to a configuration file and/or a target label within
/// that file. The syntax and meaning are defined by recipe.type. For example,
/// if the recipe type were "make", then this would reference the directory in
/// which to run make as well as which target to use.
#[prost(string, tag = "3")]
pub entry_point: ::prost::alloc::string::String,
/// Collection of all external inputs that influenced the build on top of
/// recipe.definedInMaterial and recipe.entryPoint. For example, if the recipe
/// type were "make", then this might be the flags passed to make aside from
/// the target, which is captured in recipe.entryPoint. Since the arguments
/// field can greatly vary in structure, depending on the builder and recipe
/// type, this is of form "Any".
#[prost(message, repeated, tag = "4")]
pub arguments: ::prost::alloc::vec::Vec<::prost_types::Any>,
/// Any other builder-controlled inputs necessary for correctly evaluating the
/// recipe. Usually only needed for reproducing the build but not evaluated as
/// part of policy. Since the environment field can greatly vary in structure,
/// depending on the builder and recipe type, this is of form "Any".
#[prost(message, repeated, tag = "5")]
pub environment: ::prost::alloc::vec::Vec<::prost_types::Any>,
}
/// Indicates that the builder claims certain fields in this message to be
/// complete.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Completeness {
/// If true, the builder claims that recipe.arguments is complete, meaning that
/// all external inputs are properly captured in the recipe.
#[prost(bool, tag = "1")]
pub arguments: bool,
/// If true, the builder claims that recipe.environment is claimed to be
/// complete.
#[prost(bool, tag = "2")]
pub environment: bool,
/// If true, the builder claims that materials are complete, usually through
/// some controls to prevent network access. Sometimes called "hermetic".
#[prost(bool, tag = "3")]
pub materials: bool,
}
/// Other properties of the build.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Metadata {
/// Identifies the particular build invocation, which can be useful for finding
/// associated logs or other ad-hoc analysis. The value SHOULD be globally
/// unique, per in-toto Provenance spec.
#[prost(string, tag = "1")]
pub build_invocation_id: ::prost::alloc::string::String,
/// The timestamp of when the build started.
#[prost(message, optional, tag = "2")]
pub build_started_on: ::core::option::Option<::prost_types::Timestamp>,
/// The timestamp of when the build completed.
#[prost(message, optional, tag = "3")]
pub build_finished_on: ::core::option::Option<::prost_types::Timestamp>,
/// Indicates that the builder claims certain fields in this message to be
/// complete.
#[prost(message, optional, tag = "4")]
pub completeness: ::core::option::Option<Completeness>,
/// If true, the builder claims that running the recipe on materials will
/// produce bit-for-bit identical output.
#[prost(bool, tag = "5")]
pub reproducible: bool,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BuilderConfig {
#[prost(string, tag = "1")]
pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct InTotoProvenance {
/// required
#[prost(message, optional, tag = "1")]
pub builder_config: ::core::option::Option<BuilderConfig>,
/// Identifies the configuration used for the build.
/// When combined with materials, this SHOULD fully describe the build,
/// such that re-running this recipe results in bit-for-bit identical output
/// (if the build is reproducible).
///
/// required
#[prost(message, optional, tag = "2")]
pub recipe: ::core::option::Option<Recipe>,
#[prost(message, optional, tag = "3")]
pub metadata: ::core::option::Option<Metadata>,
/// The collection of artifacts that influenced the build including sources,
/// dependencies, build tools, base images, and so on. This is considered to be
/// incomplete unless metadata.completeness.materials is true. Unset or null is
/// equivalent to empty.
#[prost(string, repeated, tag = "4")]
pub materials: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SlsaProvenance {
/// required
#[prost(message, optional, tag = "1")]
pub builder: ::core::option::Option<slsa_provenance::SlsaBuilder>,
/// Identifies the configuration used for the build.
/// When combined with materials, this SHOULD fully describe the build,
/// such that re-running this recipe results in bit-for-bit identical output
/// (if the build is reproducible).
///
/// required
#[prost(message, optional, tag = "2")]
pub recipe: ::core::option::Option<slsa_provenance::SlsaRecipe>,
#[prost(message, optional, tag = "3")]
pub metadata: ::core::option::Option<slsa_provenance::SlsaMetadata>,
/// The collection of artifacts that influenced the build including sources,
/// dependencies, build tools, base images, and so on. This is considered to be
/// incomplete unless metadata.completeness.materials is true. Unset or null is
/// equivalent to empty.
#[prost(message, repeated, tag = "4")]
pub materials: ::prost::alloc::vec::Vec<slsa_provenance::Material>,
}
/// Nested message and enum types in `SlsaProvenance`.
pub mod slsa_provenance {
/// Steps taken to build the artifact.
/// For a TaskRun, typically each container corresponds to one step in the
/// recipe.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SlsaRecipe {
/// URI indicating what type of recipe was performed. It determines the
/// meaning of recipe.entryPoint, recipe.arguments, recipe.environment, and
/// materials.
#[prost(string, tag = "1")]
pub r#type: ::prost::alloc::string::String,
/// Index in materials containing the recipe steps that are not implied by
/// recipe.type. For example, if the recipe type were "make", then this would
/// point to the source containing the Makefile, not the make program itself.
/// Set to -1 if the recipe doesn't come from a material, as zero is default
/// unset value for int64.
#[prost(int64, tag = "2")]
pub defined_in_material: i64,
/// String identifying the entry point into the build.
/// This is often a path to a configuration file and/or a target label within
/// that file. The syntax and meaning are defined by recipe.type. For
/// example, if the recipe type were "make", then this would reference the
/// directory in which to run make as well as which target to use.
#[prost(string, tag = "3")]
pub entry_point: ::prost::alloc::string::String,
/// Collection of all external inputs that influenced the build on top of
/// recipe.definedInMaterial and recipe.entryPoint. For example, if the
/// recipe type were "make", then this might be the flags passed to make
/// aside from the target, which is captured in recipe.entryPoint. Depending
/// on the recipe Type, the structure may be different.
#[prost(message, optional, tag = "4")]
pub arguments: ::core::option::Option<::prost_types::Any>,
/// Any other builder-controlled inputs necessary for correctly evaluating
/// the recipe. Usually only needed for reproducing the build but not
/// evaluated as part of policy. Depending on the recipe Type, the structure
/// may be different.
#[prost(message, optional, tag = "5")]
pub environment: ::core::option::Option<::prost_types::Any>,
}
/// Indicates that the builder claims certain fields in this message to be
/// complete.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SlsaCompleteness {
/// If true, the builder claims that recipe.arguments is complete, meaning
/// that all external inputs are properly captured in the recipe.
#[prost(bool, tag = "1")]
pub arguments: bool,
/// If true, the builder claims that recipe.environment is claimed to be
/// complete.
#[prost(bool, tag = "2")]
pub environment: bool,
/// If true, the builder claims that materials are complete, usually through
/// some controls to prevent network access. Sometimes called "hermetic".
#[prost(bool, tag = "3")]
pub materials: bool,
}
/// Other properties of the build.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SlsaMetadata {
/// Identifies the particular build invocation, which can be useful for
/// finding associated logs or other ad-hoc analysis. The value SHOULD be
/// globally unique, per in-toto Provenance spec.
#[prost(string, tag = "1")]
pub build_invocation_id: ::prost::alloc::string::String,
/// The timestamp of when the build started.
#[prost(message, optional, tag = "2")]
pub build_started_on: ::core::option::Option<::prost_types::Timestamp>,
/// The timestamp of when the build completed.
#[prost(message, optional, tag = "3")]
pub build_finished_on: ::core::option::Option<::prost_types::Timestamp>,
/// Indicates that the builder claims certain fields in this message to be
/// complete.
#[prost(message, optional, tag = "4")]
pub completeness: ::core::option::Option<SlsaCompleteness>,
/// If true, the builder claims that running the recipe on materials will
/// produce bit-for-bit identical output.
#[prost(bool, tag = "5")]
pub reproducible: bool,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SlsaBuilder {
#[prost(string, tag = "1")]
pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Material {
#[prost(string, tag = "1")]
pub uri: ::prost::alloc::string::String,
#[prost(map = "string, string", tag = "2")]
pub digest: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
}
}
/// Spec defined at
/// <https://github.com/in-toto/attestation/tree/main/spec#statement> The
/// serialized InTotoStatement will be stored as Envelope.payload.
/// Envelope.payloadType is always "application/vnd.in-toto+json".
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct InTotoStatement {
/// Always `<https://in-toto.io/Statement/v0.1`.>
#[prost(string, tag = "1")]
pub r#type: ::prost::alloc::string::String,
#[prost(message, repeated, tag = "2")]
pub subject: ::prost::alloc::vec::Vec<Subject>,
/// `<https://slsa.dev/provenance/v0.1`> for SlsaProvenance.
#[prost(string, tag = "3")]
pub predicate_type: ::prost::alloc::string::String,
#[prost(oneof = "in_toto_statement::Predicate", tags = "4, 5")]
pub predicate: ::core::option::Option<in_toto_statement::Predicate>,
}
/// Nested message and enum types in `InTotoStatement`.
pub mod in_toto_statement {
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Predicate {
#[prost(message, tag = "4")]
Provenance(super::InTotoProvenance),
#[prost(message, tag = "5")]
SlsaProvenance(super::SlsaProvenance),
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Subject {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// `"<ALGORITHM>": "<HEX_VALUE>"`
/// Algorithms can be e.g. sha256, sha512
/// See
/// <https://github.com/in-toto/attestation/blob/main/spec/field_types.md#DigestSet>
#[prost(map = "string, string", tag = "2")]
pub digest:
::std::collections::HashMap<::prost::alloc::string::String, ::prost::alloc::string::String>,
}
/// Provenance of a build. Contains all information needed to verify the full
/// details about the build from source to completion.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BuildProvenance {
/// Required. Unique identifier of the build.
#[prost(string, tag = "1")]
pub id: ::prost::alloc::string::String,
/// ID of the project.
#[prost(string, tag = "2")]
pub project_id: ::prost::alloc::string::String,
/// Commands requested by the build.
#[prost(message, repeated, tag = "3")]
pub commands: ::prost::alloc::vec::Vec<Command>,
/// Output of the build.
#[prost(message, repeated, tag = "4")]
pub built_artifacts: ::prost::alloc::vec::Vec<Artifact>,
/// Time at which the build was created.
#[prost(message, optional, tag = "5")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Time at which execution of the build was started.
#[prost(message, optional, tag = "6")]
pub start_time: ::core::option::Option<::prost_types::Timestamp>,
/// Time at which execution of the build was finished.
#[prost(message, optional, tag = "7")]
pub end_time: ::core::option::Option<::prost_types::Timestamp>,
/// E-mail address of the user who initiated this build. Note that this was the
/// user's e-mail address at the time the build was initiated; this address may
/// not represent the same end-user for all time.
#[prost(string, tag = "8")]
pub creator: ::prost::alloc::string::String,
/// URI where any logs for this provenance were written.
#[prost(string, tag = "9")]
pub logs_uri: ::prost::alloc::string::String,
/// Details of the Source input to the build.
#[prost(message, optional, tag = "10")]
pub source_provenance: ::core::option::Option<Source>,
/// Trigger identifier if the build was triggered automatically; empty if not.
#[prost(string, tag = "11")]
pub trigger_id: ::prost::alloc::string::String,
/// Special options applied to this build. This is a catch-all field where
/// build providers can enter any desired additional details.
#[prost(map = "string, string", tag = "12")]
pub build_options:
::std::collections::HashMap<::prost::alloc::string::String, ::prost::alloc::string::String>,
/// Version string of the builder at the time this build was executed.
#[prost(string, tag = "13")]
pub builder_version: ::prost::alloc::string::String,
}
/// Source describes the location of the source used for the build.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Source {
/// If provided, the input binary artifacts for the build came from this
/// location.
#[prost(string, tag = "1")]
pub artifact_storage_source_uri: ::prost::alloc::string::String,
/// Hash(es) of the build source, which can be used to verify that the original
/// source integrity was maintained in the build.
///
/// The keys to this map are file paths used as build source and the values
/// contain the hash values for those files.
///
/// If the build source came in a single package such as a gzipped tarfile
/// (.tar.gz), the FileHash will be for the single path to that file.
#[prost(map = "string, message", tag = "2")]
pub file_hashes: ::std::collections::HashMap<::prost::alloc::string::String, FileHashes>,
/// If provided, the source code used for the build came from this location.
#[prost(message, optional, tag = "3")]
pub context: ::core::option::Option<SourceContext>,
/// If provided, some of the source code used for the build may be found in
/// these locations, in the case where the source repository had multiple
/// remotes or submodules. This list will not include the context specified in
/// the context field.
#[prost(message, repeated, tag = "4")]
pub additional_contexts: ::prost::alloc::vec::Vec<SourceContext>,
}
/// Container message for hashes of byte content of files, used in source
/// messages to verify integrity of source input to the build.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FileHashes {
/// Required. Collection of file hashes.
#[prost(message, repeated, tag = "1")]
pub file_hash: ::prost::alloc::vec::Vec<Hash>,
}
/// Container message for hash values.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Hash {
/// Required. The type of hash that was performed, e.g. "SHA-256".
#[prost(string, tag = "1")]
pub r#type: ::prost::alloc::string::String,
/// Required. The hash value.
#[prost(bytes = "vec", tag = "2")]
pub value: ::prost::alloc::vec::Vec<u8>,
}
/// Command describes a step performed as part of the build pipeline.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Command {
/// Required. Name of the command, as presented on the command line, or if the
/// command is packaged as a Docker container, as presented to `docker pull`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Environment variables set before running this command.
#[prost(string, repeated, tag = "2")]
pub env: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Command-line arguments used when executing this command.
#[prost(string, repeated, tag = "3")]
pub args: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Working directory (relative to project source root) used when running this
/// command.
#[prost(string, tag = "4")]
pub dir: ::prost::alloc::string::String,
/// Optional unique identifier for this command, used in wait_for to reference
/// this command as a dependency.
#[prost(string, tag = "5")]
pub id: ::prost::alloc::string::String,
/// The ID(s) of the command(s) that this command depends on.
#[prost(string, repeated, tag = "6")]
pub wait_for: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Artifact describes a build product.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Artifact {
/// Hash or checksum value of a binary, or Docker Registry 2.0 digest of a
/// container.
#[prost(string, tag = "1")]
pub checksum: ::prost::alloc::string::String,
/// Artifact ID, if any; for container images, this will be a URL by digest
/// like `gcr.io/projectID/imagename@sha256:123456`.
#[prost(string, tag = "2")]
pub id: ::prost::alloc::string::String,
/// Related artifact names. This may be the path to a binary or jar file, or in
/// the case of a container build, the name used to push the container image to
/// Google Container Registry, as presented to `docker push`. Note that a
/// single Artifact ID can have multiple names, for example if two tags are
/// applied to one image.
#[prost(string, repeated, tag = "3")]
pub names: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// A SourceContext is a reference to a tree of files. A SourceContext together
/// with a path point to a unique revision of a single file or directory.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SourceContext {
/// Labels with user defined metadata.
#[prost(map = "string, string", tag = "4")]
pub labels:
::std::collections::HashMap<::prost::alloc::string::String, ::prost::alloc::string::String>,
/// A SourceContext can refer any one of the following types of repositories.
#[prost(oneof = "source_context::Context", tags = "1, 2, 3")]
pub context: ::core::option::Option<source_context::Context>,
}
/// Nested message and enum types in `SourceContext`.
pub mod source_context {
/// A SourceContext can refer any one of the following types of repositories.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Context {
/// A SourceContext referring to a revision in a Google Cloud Source Repo.
#[prost(message, tag = "1")]
CloudRepo(super::CloudRepoSourceContext),
/// A SourceContext referring to a Gerrit project.
#[prost(message, tag = "2")]
Gerrit(super::GerritSourceContext),
/// A SourceContext referring to any third party Git repo (e.g., GitHub).
#[prost(message, tag = "3")]
Git(super::GitSourceContext),
}
}
/// An alias to a repo revision.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AliasContext {
/// The alias kind.
#[prost(enumeration = "alias_context::Kind", tag = "1")]
pub kind: i32,
/// The alias name.
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
}
/// Nested message and enum types in `AliasContext`.
pub mod alias_context {
/// The type of an alias.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Kind {
/// Unknown.
Unspecified = 0,
/// Git tag.
Fixed = 1,
/// Git branch.
Movable = 2,
/// Used to specify non-standard aliases. For example, if a Git repo has a
/// ref named "refs/foo/bar".
Other = 4,
}
}
/// A CloudRepoSourceContext denotes a particular revision in a Google Cloud
/// Source Repo.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CloudRepoSourceContext {
/// The ID of the repo.
#[prost(message, optional, tag = "1")]
pub repo_id: ::core::option::Option<RepoId>,
/// A revision in a Cloud Repo can be identified by either its revision ID or
/// its alias.
#[prost(oneof = "cloud_repo_source_context::Revision", tags = "2, 3")]
pub revision: ::core::option::Option<cloud_repo_source_context::Revision>,
}
/// Nested message and enum types in `CloudRepoSourceContext`.
pub mod cloud_repo_source_context {
/// A revision in a Cloud Repo can be identified by either its revision ID or
/// its alias.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Revision {
/// A revision ID.
#[prost(string, tag = "2")]
RevisionId(::prost::alloc::string::String),
/// An alias, which may be a branch or tag.
#[prost(message, tag = "3")]
AliasContext(super::AliasContext),
}
}
/// A SourceContext referring to a Gerrit project.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GerritSourceContext {
/// The URI of a running Gerrit instance.
#[prost(string, tag = "1")]
pub host_uri: ::prost::alloc::string::String,
/// The full project name within the host. Projects may be nested, so
/// "project/subproject" is a valid project name. The "repo name" is the
/// hostURI/project.
#[prost(string, tag = "2")]
pub gerrit_project: ::prost::alloc::string::String,
/// A revision in a Gerrit project can be identified by either its revision ID
/// or its alias.
#[prost(oneof = "gerrit_source_context::Revision", tags = "3, 4")]
pub revision: ::core::option::Option<gerrit_source_context::Revision>,
}
/// Nested message and enum types in `GerritSourceContext`.
pub mod gerrit_source_context {
/// A revision in a Gerrit project can be identified by either its revision ID
/// or its alias.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Revision {
/// A revision (commit) ID.
#[prost(string, tag = "3")]
RevisionId(::prost::alloc::string::String),
/// An alias, which may be a branch or tag.
#[prost(message, tag = "4")]
AliasContext(super::AliasContext),
}
}
/// A GitSourceContext denotes a particular revision in a third party Git
/// repository (e.g., GitHub).
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GitSourceContext {
/// Git repository URL.
#[prost(string, tag = "1")]
pub url: ::prost::alloc::string::String,
/// Git commit hash.
#[prost(string, tag = "2")]
pub revision_id: ::prost::alloc::string::String,
}
/// A unique identifier for a Cloud Repo.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RepoId {
/// A cloud repo can be identified by either its project ID and repository name
/// combination, or its globally unique identifier.
#[prost(oneof = "repo_id::Id", tags = "1, 2")]
pub id: ::core::option::Option<repo_id::Id>,
}
/// Nested message and enum types in `RepoId`.
pub mod repo_id {
/// A cloud repo can be identified by either its project ID and repository name
/// combination, or its globally unique identifier.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Id {
/// A combination of a project ID and a repo name.
#[prost(message, tag = "1")]
ProjectRepoId(super::ProjectRepoId),
/// A server-assigned, globally unique identifier.
#[prost(string, tag = "2")]
Uid(::prost::alloc::string::String),
}
}
/// Selects a repo using a Google Cloud Platform project ID (e.g.,
/// winged-cargo-31) and a repo name within that project.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProjectRepoId {
/// The ID of the project.
#[prost(string, tag = "1")]
pub project_id: ::prost::alloc::string::String,
/// The name of the repo. Leave empty for the default repo.
#[prost(string, tag = "2")]
pub repo_name: ::prost::alloc::string::String,
}
/// Note holding the version of the provider's builder and the signature of the
/// provenance message in the build details occurrence.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BuildNote {
/// Required. Immutable. Version of the builder which produced this build.
#[prost(string, tag = "1")]
pub builder_version: ::prost::alloc::string::String,
}
/// Details of a build occurrence.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BuildOccurrence {
/// The actual provenance for the build.
#[prost(message, optional, tag = "1")]
pub provenance: ::core::option::Option<BuildProvenance>,
/// Serialized JSON representation of the provenance, used in generating the
/// build signature in the corresponding build note. After verifying the
/// signature, `provenance_bytes` can be unmarshalled and compared to the
/// provenance to confirm that it is unchanged. A base64-encoded string
/// representation of the provenance bytes is used for the signature in order
/// to interoperate with openssl which expects this format for signature
/// verification.
///
/// The serialized form is captured both to avoid ambiguity in how the
/// provenance is marshalled to json as well to prevent incompatibilities with
/// future changes.
#[prost(string, tag = "2")]
pub provenance_bytes: ::prost::alloc::string::String,
/// Deprecated. See InTotoStatement for the replacement.
/// In-toto Provenance representation as defined in spec.
#[prost(message, optional, tag = "3")]
pub intoto_provenance: ::core::option::Option<InTotoProvenance>,
/// In-toto Statement representation as defined in spec.
/// The intoto_statement can contain any type of provenance. The serialized
/// payload of the statement can be stored and signed in the Occurrence's
/// envelope.
#[prost(message, optional, tag = "4")]
pub intoto_statement: ::core::option::Option<InTotoStatement>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ComplianceNote {
/// The title that identifies this compliance check.
#[prost(string, tag = "1")]
pub title: ::prost::alloc::string::String,
/// A description about this compliance check.
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
/// The OS and config versions the benchmark applies to.
#[prost(message, repeated, tag = "3")]
pub version: ::prost::alloc::vec::Vec<ComplianceVersion>,
/// A rationale for the existence of this compliance check.
#[prost(string, tag = "4")]
pub rationale: ::prost::alloc::string::String,
/// A description of remediation steps if the compliance check fails.
#[prost(string, tag = "5")]
pub remediation: ::prost::alloc::string::String,
/// Serialized scan instructions with a predefined format.
#[prost(bytes = "vec", tag = "7")]
pub scan_instructions: ::prost::alloc::vec::Vec<u8>,
#[prost(oneof = "compliance_note::ComplianceType", tags = "6")]
pub compliance_type: ::core::option::Option<compliance_note::ComplianceType>,
}
/// Nested message and enum types in `ComplianceNote`.
pub mod compliance_note {
/// A compliance check that is a CIS benchmark.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CisBenchmark {
#[prost(int32, tag = "1")]
pub profile_level: i32,
#[prost(enumeration = "super::Severity", tag = "2")]
pub severity: i32,
}
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum ComplianceType {
#[prost(message, tag = "6")]
CisBenchmark(CisBenchmark),
}
}
/// Describes the CIS benchmark version that is applicable to a given OS and
/// os version.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ComplianceVersion {
/// The CPE URI (<https://cpe.mitre.org/specification/>) this benchmark is
/// applicable to.
#[prost(string, tag = "1")]
pub cpe_uri: ::prost::alloc::string::String,
/// The version of the benchmark. This is set to the version of the OS-specific
/// CIS document the benchmark is defined in.
#[prost(string, tag = "2")]
pub version: ::prost::alloc::string::String,
}
/// An indication that the compliance checks in the associated ComplianceNote
/// were not satisfied for particular resources or a specified reason.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ComplianceOccurrence {
#[prost(message, repeated, tag = "2")]
pub non_compliant_files: ::prost::alloc::vec::Vec<NonCompliantFile>,
#[prost(string, tag = "3")]
pub non_compliance_reason: ::prost::alloc::string::String,
}
/// Details about files that caused a compliance check to fail.
///
/// display_command is a single command that can be used to display a list of
/// non compliant files. When there is no such command, we can also iterate a
/// list of non compliant file using 'path'.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NonCompliantFile {
/// Empty if `display_command` is set.
#[prost(string, tag = "1")]
pub path: ::prost::alloc::string::String,
/// Command to display the non-compliant files.
#[prost(string, tag = "2")]
pub display_command: ::prost::alloc::string::String,
/// Explains why a file is non compliant for a CIS check.
#[prost(string, tag = "3")]
pub reason: ::prost::alloc::string::String,
}
/// An artifact that can be deployed in some runtime.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeploymentNote {
/// Required. Resource URI for the artifact being deployed.
#[prost(string, repeated, tag = "1")]
pub resource_uri: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// The period during which some deployable was active in a runtime.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeploymentOccurrence {
/// Identity of the user that triggered this deployment.
#[prost(string, tag = "1")]
pub user_email: ::prost::alloc::string::String,
/// Required. Beginning of the lifetime of this deployment.
#[prost(message, optional, tag = "2")]
pub deploy_time: ::core::option::Option<::prost_types::Timestamp>,
/// End of the lifetime of this deployment.
#[prost(message, optional, tag = "3")]
pub undeploy_time: ::core::option::Option<::prost_types::Timestamp>,
/// Configuration used to create this deployment.
#[prost(string, tag = "4")]
pub config: ::prost::alloc::string::String,
/// Address of the runtime element hosting this deployment.
#[prost(string, tag = "5")]
pub address: ::prost::alloc::string::String,
/// Output only. Resource URI for the artifact being deployed taken from
/// the deployable field with the same name.
#[prost(string, repeated, tag = "6")]
pub resource_uri: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Platform hosting this deployment.
#[prost(enumeration = "deployment_occurrence::Platform", tag = "7")]
pub platform: i32,
}
/// Nested message and enum types in `DeploymentOccurrence`.
pub mod deployment_occurrence {
/// Types of platforms.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Platform {
/// Unknown.
Unspecified = 0,
/// Google Container Engine.
Gke = 1,
/// Google App Engine: Flexible Environment.
Flex = 2,
/// Custom user-defined platform.
Custom = 3,
}
}
/// A note that indicates a type of analysis a provider would perform. This note
/// exists in a provider's project. A `Discovery` occurrence is created in a
/// consumer's project at the start of analysis.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DiscoveryNote {
/// Required. Immutable. The kind of analysis that is handled by this
/// discovery.
#[prost(enumeration = "NoteKind", tag = "1")]
pub analysis_kind: i32,
}
/// Provides information about the analysis status of a discovered resource.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DiscoveryOccurrence {
/// Whether the resource is continuously analyzed.
#[prost(enumeration = "discovery_occurrence::ContinuousAnalysis", tag = "1")]
pub continuous_analysis: i32,
/// The status of discovery for the resource.
#[prost(enumeration = "discovery_occurrence::AnalysisStatus", tag = "2")]
pub analysis_status: i32,
/// When an error is encountered this will contain a LocalizedMessage under
/// details to show to the user. The LocalizedMessage is output only and
/// populated by the API.
#[prost(message, optional, tag = "3")]
pub analysis_status_error: ::core::option::Option<super::super::google::rpc::Status>,
/// The CPE of the resource being scanned.
#[prost(string, tag = "4")]
pub cpe: ::prost::alloc::string::String,
/// The last time this resource was scanned.
#[prost(message, optional, tag = "5")]
pub last_scan_time: ::core::option::Option<::prost_types::Timestamp>,
}
/// Nested message and enum types in `DiscoveryOccurrence`.
pub mod discovery_occurrence {
/// Whether the resource is continuously analyzed.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ContinuousAnalysis {
/// Unknown.
Unspecified = 0,
/// The resource is continuously analyzed.
Active = 1,
/// The resource is ignored for continuous analysis.
Inactive = 2,
}
/// Analysis status for a resource. Currently for initial analysis only (not
/// updated in continuous analysis).
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum AnalysisStatus {
/// Unknown.
Unspecified = 0,
/// Resource is known but no action has been taken yet.
Pending = 1,
/// Resource is being analyzed.
Scanning = 2,
/// Analysis has finished successfully.
FinishedSuccess = 3,
/// Analysis has finished unsuccessfully, the analysis itself is in a bad
/// state.
FinishedFailed = 4,
/// The resource is known not to be supported
FinishedUnsupported = 5,
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DsseAttestationNote {
/// DSSEHint hints at the purpose of the attestation authority.
#[prost(message, optional, tag = "1")]
pub hint: ::core::option::Option<dsse_attestation_note::DsseHint>,
}
/// Nested message and enum types in `DSSEAttestationNote`.
pub mod dsse_attestation_note {
/// This submessage provides human-readable hints about the purpose of the
/// authority. Because the name of a note acts as its resource reference, it is
/// important to disambiguate the canonical name of the Note (which might be a
/// UUID for security purposes) from "readable" names more suitable for debug
/// output. Note that these hints should not be used to look up authorities in
/// security sensitive contexts, such as when looking up attestations to
/// verify.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DsseHint {
/// Required. The human readable name of this attestation authority, for
/// example "cloudbuild-prod".
#[prost(string, tag = "1")]
pub human_readable_name: ::prost::alloc::string::String,
}
}
/// Deprecated. Prefer to use a regular Occurrence, and populate the
/// Envelope at the top level of the Occurrence.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DsseAttestationOccurrence {
/// If doing something security critical, make sure to verify the signatures in
/// this metadata.
#[prost(message, optional, tag = "1")]
pub envelope: ::core::option::Option<Envelope>,
#[prost(oneof = "dsse_attestation_occurrence::DecodedPayload", tags = "2")]
pub decoded_payload: ::core::option::Option<dsse_attestation_occurrence::DecodedPayload>,
}
/// Nested message and enum types in `DSSEAttestationOccurrence`.
pub mod dsse_attestation_occurrence {
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum DecodedPayload {
#[prost(message, tag = "2")]
Statement(super::InTotoStatement),
}
}
/// Layer holds metadata specific to a layer of a Docker image.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Layer {
/// Required. The recovered Dockerfile directive used to construct this layer.
/// See <https://docs.docker.com/engine/reference/builder/> for more information.
#[prost(string, tag = "1")]
pub directive: ::prost::alloc::string::String,
/// The recovered arguments to the Dockerfile directive.
#[prost(string, tag = "2")]
pub arguments: ::prost::alloc::string::String,
}
/// A set of properties that uniquely identify a given Docker image.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Fingerprint {
/// Required. The layer ID of the final layer in the Docker image's v1
/// representation.
#[prost(string, tag = "1")]
pub v1_name: ::prost::alloc::string::String,
/// Required. The ordered list of v2 blobs that represent a given image.
#[prost(string, repeated, tag = "2")]
pub v2_blob: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Output only. The name of the image's v2 blobs computed via:
/// \[bottom\] := v2_blob\[bottom\]
/// \[N\] := sha256(v2_blob\[N\] + " " + v2_name\[N+1\])
/// Only the name of the final blob is kept.
#[prost(string, tag = "3")]
pub v2_name: ::prost::alloc::string::String,
}
/// Basis describes the base image portion (Note) of the DockerImage
/// relationship. Linked occurrences are derived from this or an equivalent image
/// via:
/// FROM <Basis.resource_url>
/// Or an equivalent reference, e.g., a tag of the resource_url.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ImageNote {
/// Required. Immutable. The resource_url for the resource representing the
/// basis of associated occurrence images.
#[prost(string, tag = "1")]
pub resource_url: ::prost::alloc::string::String,
/// Required. Immutable. The fingerprint of the base image.
#[prost(message, optional, tag = "2")]
pub fingerprint: ::core::option::Option<Fingerprint>,
}
/// Details of the derived image portion of the DockerImage relationship. This
/// image would be produced from a Dockerfile with FROM <DockerImage.Basis in
/// attached Note>.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ImageOccurrence {
/// Required. The fingerprint of the derived image.
#[prost(message, optional, tag = "1")]
pub fingerprint: ::core::option::Option<Fingerprint>,
/// Output only. The number of layers by which this image differs from the
/// associated image basis.
#[prost(int32, tag = "2")]
pub distance: i32,
/// This contains layer-specific metadata, if populated it has length
/// "distance" and is ordered with \[distance\] being the layer immediately
/// following the base image and \[1\] being the final layer.
#[prost(message, repeated, tag = "3")]
pub layer_info: ::prost::alloc::vec::Vec<Layer>,
/// Output only. This contains the base image URL for the derived image
/// occurrence.
#[prost(string, tag = "4")]
pub base_resource_url: ::prost::alloc::string::String,
}
/// An Upgrade Note represents a potential upgrade of a package to a given
/// version. For each package version combination (i.e. bash 4.0, bash 4.1,
/// bash 4.1.2), there will be an Upgrade Note. For Windows, windows_update field
/// represents the information related to the update.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpgradeNote {
/// Required for non-Windows OS. The package this Upgrade is for.
#[prost(string, tag = "1")]
pub package: ::prost::alloc::string::String,
/// Required for non-Windows OS. The version of the package in machine + human
/// readable form.
#[prost(message, optional, tag = "2")]
pub version: ::core::option::Option<Version>,
/// Metadata about the upgrade for each specific operating system.
#[prost(message, repeated, tag = "3")]
pub distributions: ::prost::alloc::vec::Vec<UpgradeDistribution>,
/// Required for Windows OS. Represents the metadata about the Windows update.
#[prost(message, optional, tag = "4")]
pub windows_update: ::core::option::Option<WindowsUpdate>,
}
/// The Upgrade Distribution represents metadata about the Upgrade for each
/// operating system (CPE). Some distributions have additional metadata around
/// updates, classifying them into various categories and severities.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpgradeDistribution {
/// Required - The specific operating system this metadata applies to. See
/// <https://cpe.mitre.org/specification/.>
#[prost(string, tag = "1")]
pub cpe_uri: ::prost::alloc::string::String,
/// The operating system classification of this Upgrade, as specified by the
/// upstream operating system upgrade feed. For Windows the classification is
/// one of the category_ids listed at
/// <https://docs.microsoft.com/en-us/previous-versions/windows/desktop/ff357803(v=vs.85>)
#[prost(string, tag = "2")]
pub classification: ::prost::alloc::string::String,
/// The severity as specified by the upstream operating system.
#[prost(string, tag = "3")]
pub severity: ::prost::alloc::string::String,
/// The cve tied to this Upgrade.
#[prost(string, repeated, tag = "4")]
pub cve: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Windows Update represents the metadata about the update for the Windows
/// operating system. The fields in this message come from the Windows Update API
/// documented at
/// <https://docs.microsoft.com/en-us/windows/win32/api/wuapi/nn-wuapi-iupdate.>
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WindowsUpdate {
/// Required - The unique identifier for the update.
#[prost(message, optional, tag = "1")]
pub identity: ::core::option::Option<windows_update::Identity>,
/// The localized title of the update.
#[prost(string, tag = "2")]
pub title: ::prost::alloc::string::String,
/// The localized description of the update.
#[prost(string, tag = "3")]
pub description: ::prost::alloc::string::String,
/// The list of categories to which the update belongs.
#[prost(message, repeated, tag = "4")]
pub categories: ::prost::alloc::vec::Vec<windows_update::Category>,
/// The Microsoft Knowledge Base article IDs that are associated with the
/// update.
#[prost(string, repeated, tag = "5")]
pub kb_article_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// The hyperlink to the support information for the update.
#[prost(string, tag = "6")]
pub support_url: ::prost::alloc::string::String,
/// The last published timestamp of the update.
#[prost(message, optional, tag = "7")]
pub last_published_timestamp: ::core::option::Option<::prost_types::Timestamp>,
}
/// Nested message and enum types in `WindowsUpdate`.
pub mod windows_update {
/// The unique identifier of the update.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Identity {
/// The revision independent identifier of the update.
#[prost(string, tag = "1")]
pub update_id: ::prost::alloc::string::String,
/// The revision number of the update.
#[prost(int32, tag = "2")]
pub revision: i32,
}
/// The category to which the update belongs.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Category {
/// The identifier of the category.
#[prost(string, tag = "1")]
pub category_id: ::prost::alloc::string::String,
/// The localized name of the category.
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
}
}
/// An Upgrade Occurrence represents that a specific resource_url could install a
/// specific upgrade. This presence is supplied via local sources (i.e. it is
/// present in the mirror and the running system has noticed its availability).
/// For Windows, both distribution and windows_update contain information for the
/// Windows update.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpgradeOccurrence {
/// Required for non-Windows OS. The package this Upgrade is for.
#[prost(string, tag = "1")]
pub package: ::prost::alloc::string::String,
/// Required for non-Windows OS. The version of the package in a machine +
/// human readable form.
#[prost(message, optional, tag = "3")]
pub parsed_version: ::core::option::Option<Version>,
/// Metadata about the upgrade for available for the specific operating system
/// for the resource_url. This allows efficient filtering, as well as
/// making it easier to use the occurrence.
#[prost(message, optional, tag = "4")]
pub distribution: ::core::option::Option<UpgradeDistribution>,
/// Required for Windows OS. Represents the metadata about the Windows update.
#[prost(message, optional, tag = "5")]
pub windows_update: ::core::option::Option<WindowsUpdate>,
}
/// An instance of an analysis type that has been found on a resource.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Occurrence {
/// Output only. The name of the occurrence in the form of
/// `projects/\[PROJECT_ID]/occurrences/[OCCURRENCE_ID\]`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Required. Immutable. A URI that represents the resource for which the
/// occurrence applies. For example,
/// `<https://gcr.io/project/image@sha256:123abc`> for a Docker image.
#[prost(string, tag = "2")]
pub resource_uri: ::prost::alloc::string::String,
/// Required. Immutable. The analysis note associated with this occurrence, in
/// the form of `projects/\[PROVIDER_ID]/notes/[NOTE_ID\]`. This field can be
/// used as a filter in list requests.
#[prost(string, tag = "3")]
pub note_name: ::prost::alloc::string::String,
/// Output only. This explicitly denotes which of the occurrence details are
/// specified. This field can be used as a filter in list requests.
#[prost(enumeration = "NoteKind", tag = "4")]
pub kind: i32,
/// A description of actions that can be taken to remedy the note.
#[prost(string, tag = "5")]
pub remediation: ::prost::alloc::string::String,
/// Output only. The time this occurrence was created.
#[prost(message, optional, tag = "6")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time this occurrence was last updated.
#[prost(message, optional, tag = "7")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// <https://github.com/secure-systems-lab/dsse>
#[prost(message, optional, tag = "18")]
pub envelope: ::core::option::Option<Envelope>,
/// Required. Immutable. Describes the details of the note kind found on this
/// resource.
#[prost(oneof = "occurrence::Details", tags = "8, 9, 10, 11, 12, 13, 14, 15, 16, 17")]
pub details: ::core::option::Option<occurrence::Details>,
}
/// Nested message and enum types in `Occurrence`.
pub mod occurrence {
/// Required. Immutable. Describes the details of the note kind found on this
/// resource.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Details {
/// Describes a security vulnerability.
#[prost(message, tag = "8")]
Vulnerability(super::VulnerabilityOccurrence),
/// Describes a verifiable build.
#[prost(message, tag = "9")]
Build(super::BuildOccurrence),
/// Describes how this resource derives from the basis in the associated
/// note.
#[prost(message, tag = "10")]
Image(super::ImageOccurrence),
/// Describes the installation of a package on the linked resource.
#[prost(message, tag = "11")]
Package(super::PackageOccurrence),
/// Describes the deployment of an artifact on a runtime.
#[prost(message, tag = "12")]
Deployment(super::DeploymentOccurrence),
/// Describes when a resource was discovered.
#[prost(message, tag = "13")]
Discovery(super::DiscoveryOccurrence),
/// Describes an attestation of an artifact.
#[prost(message, tag = "14")]
Attestation(super::AttestationOccurrence),
/// Describes an available package upgrade on the linked resource.
#[prost(message, tag = "15")]
Upgrade(super::UpgradeOccurrence),
/// Describes a compliance violation on a linked resource.
#[prost(message, tag = "16")]
Compliance(super::ComplianceOccurrence),
/// Describes an attestation of an artifact using dsse.
#[prost(message, tag = "17")]
DsseAttestation(super::DsseAttestationOccurrence),
}
}
/// A type of analysis that can be done for a resource.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Note {
/// Output only. The name of the note in the form of
/// `projects/\[PROVIDER_ID]/notes/[NOTE_ID\]`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// A one sentence description of this note.
#[prost(string, tag = "2")]
pub short_description: ::prost::alloc::string::String,
/// A detailed description of this note.
#[prost(string, tag = "3")]
pub long_description: ::prost::alloc::string::String,
/// Output only. The type of analysis. This field can be used as a filter in
/// list requests.
#[prost(enumeration = "NoteKind", tag = "4")]
pub kind: i32,
/// URLs associated with this note.
#[prost(message, repeated, tag = "5")]
pub related_url: ::prost::alloc::vec::Vec<RelatedUrl>,
/// Time of expiration for this note. Empty if note does not expire.
#[prost(message, optional, tag = "6")]
pub expiration_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time this note was created. This field can be used as a
/// filter in list requests.
#[prost(message, optional, tag = "7")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time this note was last updated. This field can be used as
/// a filter in list requests.
#[prost(message, optional, tag = "8")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Other notes related to this note.
#[prost(string, repeated, tag = "9")]
pub related_note_names: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Required. Immutable. The type of analysis this note represents.
#[prost(oneof = "note::Type", tags = "10, 11, 12, 13, 14, 15, 16, 17, 18, 19")]
pub r#type: ::core::option::Option<note::Type>,
}
/// Nested message and enum types in `Note`.
pub mod note {
/// Required. Immutable. The type of analysis this note represents.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Type {
/// A note describing a package vulnerability.
#[prost(message, tag = "10")]
Vulnerability(super::VulnerabilityNote),
/// A note describing build provenance for a verifiable build.
#[prost(message, tag = "11")]
Build(super::BuildNote),
/// A note describing a base image.
#[prost(message, tag = "12")]
Image(super::ImageNote),
/// A note describing a package hosted by various package managers.
#[prost(message, tag = "13")]
Package(super::PackageNote),
/// A note describing something that can be deployed.
#[prost(message, tag = "14")]
Deployment(super::DeploymentNote),
/// A note describing the initial analysis of a resource.
#[prost(message, tag = "15")]
Discovery(super::DiscoveryNote),
/// A note describing an attestation role.
#[prost(message, tag = "16")]
Attestation(super::AttestationNote),
/// A note describing available package upgrades.
#[prost(message, tag = "17")]
Upgrade(super::UpgradeNote),
/// A note describing a compliance check.
#[prost(message, tag = "18")]
Compliance(super::ComplianceNote),
/// A note describing a dsse attestation note.
#[prost(message, tag = "19")]
DsseAttestation(super::DsseAttestationNote),
}
}
/// Request to get an occurrence.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetOccurrenceRequest {
/// The name of the occurrence in the form of
/// `projects/\[PROJECT_ID]/occurrences/[OCCURRENCE_ID\]`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request to list occurrences.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListOccurrencesRequest {
/// The name of the project to list occurrences for in the form of
/// `projects/\[PROJECT_ID\]`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The filter expression.
#[prost(string, tag = "2")]
pub filter: ::prost::alloc::string::String,
/// Number of occurrences to return in the list. Must be positive. Max allowed
/// page size is 1000. If not specified, page size defaults to 20.
#[prost(int32, tag = "3")]
pub page_size: i32,
/// Token to provide to skip to a particular spot in the list.
#[prost(string, tag = "4")]
pub page_token: ::prost::alloc::string::String,
}
/// Response for listing occurrences.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListOccurrencesResponse {
/// The occurrences requested.
#[prost(message, repeated, tag = "1")]
pub occurrences: ::prost::alloc::vec::Vec<Occurrence>,
/// The next pagination token in the list response. It should be used as
/// `page_token` for the following request. An empty value means no more
/// results.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request to delete an occurrence.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteOccurrenceRequest {
/// The name of the occurrence in the form of
/// `projects/\[PROJECT_ID]/occurrences/[OCCURRENCE_ID\]`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request to create a new occurrence.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateOccurrenceRequest {
/// The name of the project in the form of `projects/\[PROJECT_ID\]`, under which
/// the occurrence is to be created.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The occurrence to create.
#[prost(message, optional, tag = "2")]
pub occurrence: ::core::option::Option<Occurrence>,
}
/// Request to update an occurrence.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateOccurrenceRequest {
/// The name of the occurrence in the form of
/// `projects/\[PROJECT_ID]/occurrences/[OCCURRENCE_ID\]`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The updated occurrence.
#[prost(message, optional, tag = "2")]
pub occurrence: ::core::option::Option<Occurrence>,
/// The fields to update.
#[prost(message, optional, tag = "3")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request to get a note.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetNoteRequest {
/// The name of the note in the form of
/// `projects/\[PROVIDER_ID]/notes/[NOTE_ID\]`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request to get the note to which the specified occurrence is attached.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetOccurrenceNoteRequest {
/// The name of the occurrence in the form of
/// `projects/\[PROJECT_ID]/occurrences/[OCCURRENCE_ID\]`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request to list notes.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNotesRequest {
/// The name of the project to list notes for in the form of
/// `projects/\[PROJECT_ID\]`.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The filter expression.
#[prost(string, tag = "2")]
pub filter: ::prost::alloc::string::String,
/// Number of notes to return in the list. Must be positive. Max allowed page
/// size is 1000. If not specified, page size defaults to 20.
#[prost(int32, tag = "3")]
pub page_size: i32,
/// Token to provide to skip to a particular spot in the list.
#[prost(string, tag = "4")]
pub page_token: ::prost::alloc::string::String,
}
/// Response for listing notes.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNotesResponse {
/// The notes requested.
#[prost(message, repeated, tag = "1")]
pub notes: ::prost::alloc::vec::Vec<Note>,
/// The next pagination token in the list response. It should be used as
/// `page_token` for the following request. An empty value means no more
/// results.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request to delete a note.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteNoteRequest {
/// The name of the note in the form of
/// `projects/\[PROVIDER_ID]/notes/[NOTE_ID\]`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request to create a new note.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateNoteRequest {
/// The name of the project in the form of `projects/\[PROJECT_ID\]`, under which
/// the note is to be created.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The ID to use for this note.
#[prost(string, tag = "2")]
pub note_id: ::prost::alloc::string::String,
/// The note to create.
#[prost(message, optional, tag = "3")]
pub note: ::core::option::Option<Note>,
}
/// Request to update a note.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateNoteRequest {
/// The name of the note in the form of
/// `projects/\[PROVIDER_ID]/notes/[NOTE_ID\]`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The updated note.
#[prost(message, optional, tag = "2")]
pub note: ::core::option::Option<Note>,
/// The fields to update.
#[prost(message, optional, tag = "3")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Request to list occurrences for a note.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNoteOccurrencesRequest {
/// The name of the note to list occurrences for in the form of
/// `projects/\[PROVIDER_ID]/notes/[NOTE_ID\]`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The filter expression.
#[prost(string, tag = "2")]
pub filter: ::prost::alloc::string::String,
/// Number of occurrences to return in the list.
#[prost(int32, tag = "3")]
pub page_size: i32,
/// Token to provide to skip to a particular spot in the list.
#[prost(string, tag = "4")]
pub page_token: ::prost::alloc::string::String,
}
/// Response for listing occurrences for a note.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNoteOccurrencesResponse {
/// The occurrences attached to the specified note.
#[prost(message, repeated, tag = "1")]
pub occurrences: ::prost::alloc::vec::Vec<Occurrence>,
/// Token to provide to skip to a particular spot in the list.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Request to create notes in batch.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BatchCreateNotesRequest {
/// The name of the project in the form of `projects/\[PROJECT_ID\]`, under which
/// the notes are to be created.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The notes to create. Max allowed length is 1000.
#[prost(map = "string, message", tag = "2")]
pub notes: ::std::collections::HashMap<::prost::alloc::string::String, Note>,
}
/// Response for creating notes in batch.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BatchCreateNotesResponse {
/// The notes that were created.
#[prost(message, repeated, tag = "1")]
pub notes: ::prost::alloc::vec::Vec<Note>,
}
/// Request to create occurrences in batch.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BatchCreateOccurrencesRequest {
/// The name of the project in the form of `projects/\[PROJECT_ID\]`, under which
/// the occurrences are to be created.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The occurrences to create. Max allowed length is 1000.
#[prost(message, repeated, tag = "2")]
pub occurrences: ::prost::alloc::vec::Vec<Occurrence>,
}
/// Response for creating occurrences in batch.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BatchCreateOccurrencesResponse {
/// The occurrences that were created.
#[prost(message, repeated, tag = "1")]
pub occurrences: ::prost::alloc::vec::Vec<Occurrence>,
}
#[doc = r" Generated client implementations."]
pub mod grafeas_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
#[doc = " [Grafeas](https://grafeas.io) API."]
#[doc = ""]
#[doc = " Retrieves analysis results of Cloud components such as Docker container"]
#[doc = " images."]
#[doc = ""]
#[doc = " Analysis results are stored as a series of occurrences. An `Occurrence`"]
#[doc = " contains information about a specific analysis instance on a resource. An"]
#[doc = " occurrence refers to a `Note`. A note contains details describing the"]
#[doc = " analysis and is generally stored in a separate project, called a `Provider`."]
#[doc = " Multiple occurrences can refer to the same note."]
#[doc = ""]
#[doc = " For example, an SSL vulnerability could affect multiple images. In this case,"]
#[doc = " there would be one note for the vulnerability and an occurrence for each"]
#[doc = " image with the vulnerability referring to that note."]
#[derive(Debug, Clone)]
pub struct GrafeasClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> GrafeasClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::ResponseBody: Body + Send + 'static,
T::Error: Into<StdError>,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> GrafeasClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<http::Request<tonic::body::BoxBody>>>::Error:
Into<StdError> + Send + Sync,
{
GrafeasClient::new(InterceptedService::new(inner, interceptor))
}
#[doc = r" Compress requests with `gzip`."]
#[doc = r""]
#[doc = r" This requires the server to support it otherwise it might respond with an"]
#[doc = r" error."]
pub fn send_gzip(mut self) -> Self {
self.inner = self.inner.send_gzip();
self
}
#[doc = r" Enable decompressing responses with `gzip`."]
pub fn accept_gzip(mut self) -> Self {
self.inner = self.inner.accept_gzip();
self
}
#[doc = " Gets the specified occurrence."]
pub async fn get_occurrence(
&mut self,
request: impl tonic::IntoRequest<super::GetOccurrenceRequest>,
) -> Result<tonic::Response<super::Occurrence>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/GetOccurrence");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Lists occurrences for the specified project."]
pub async fn list_occurrences(
&mut self,
request: impl tonic::IntoRequest<super::ListOccurrencesRequest>,
) -> Result<tonic::Response<super::ListOccurrencesResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/ListOccurrences");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Deletes the specified occurrence. For example, use this method to delete an"]
#[doc = " occurrence when the occurrence is no longer applicable for the given"]
#[doc = " resource."]
pub async fn delete_occurrence(
&mut self,
request: impl tonic::IntoRequest<super::DeleteOccurrenceRequest>,
) -> Result<tonic::Response<()>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/DeleteOccurrence");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Creates a new occurrence."]
pub async fn create_occurrence(
&mut self,
request: impl tonic::IntoRequest<super::CreateOccurrenceRequest>,
) -> Result<tonic::Response<super::Occurrence>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/CreateOccurrence");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Creates new occurrences in batch."]
pub async fn batch_create_occurrences(
&mut self,
request: impl tonic::IntoRequest<super::BatchCreateOccurrencesRequest>,
) -> Result<tonic::Response<super::BatchCreateOccurrencesResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/BatchCreateOccurrences");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Updates the specified occurrence."]
pub async fn update_occurrence(
&mut self,
request: impl tonic::IntoRequest<super::UpdateOccurrenceRequest>,
) -> Result<tonic::Response<super::Occurrence>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/UpdateOccurrence");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Gets the note attached to the specified occurrence. Consumer projects can"]
#[doc = " use this method to get a note that belongs to a provider project."]
pub async fn get_occurrence_note(
&mut self,
request: impl tonic::IntoRequest<super::GetOccurrenceNoteRequest>,
) -> Result<tonic::Response<super::Note>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/GetOccurrenceNote");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Gets the specified note."]
pub async fn get_note(
&mut self,
request: impl tonic::IntoRequest<super::GetNoteRequest>,
) -> Result<tonic::Response<super::Note>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/GetNote");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Lists notes for the specified project."]
pub async fn list_notes(
&mut self,
request: impl tonic::IntoRequest<super::ListNotesRequest>,
) -> Result<tonic::Response<super::ListNotesResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/ListNotes");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Deletes the specified note."]
pub async fn delete_note(
&mut self,
request: impl tonic::IntoRequest<super::DeleteNoteRequest>,
) -> Result<tonic::Response<()>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/DeleteNote");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Creates a new note."]
pub async fn create_note(
&mut self,
request: impl tonic::IntoRequest<super::CreateNoteRequest>,
) -> Result<tonic::Response<super::Note>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/CreateNote");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Creates new notes in batch."]
pub async fn batch_create_notes(
&mut self,
request: impl tonic::IntoRequest<super::BatchCreateNotesRequest>,
) -> Result<tonic::Response<super::BatchCreateNotesResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/BatchCreateNotes");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Updates the specified note."]
pub async fn update_note(
&mut self,
request: impl tonic::IntoRequest<super::UpdateNoteRequest>,
) -> Result<tonic::Response<super::Note>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/UpdateNote");
self.inner.unary(request.into_request(), path, codec).await
}
#[doc = " Lists occurrences referencing the specified note. Provider projects can use"]
#[doc = " this method to get all occurrences across consumer projects referencing the"]
#[doc = " specified note."]
pub async fn list_note_occurrences(
&mut self,
request: impl tonic::IntoRequest<super::ListNoteOccurrencesRequest>,
) -> Result<tonic::Response<super::ListNoteOccurrencesResponse>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path =
http::uri::PathAndQuery::from_static("/grafeas.v1.Grafeas/ListNoteOccurrences");
self.inner.unary(request.into_request(), path, codec).await
}
}
}