1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // Generated by the protocol buffer compiler. DO NOT EDIT! 17 // source: google/devtools/containeranalysis/v1beta1/grafeas/grafeas.proto 18 19 package io.grafeas.v1beta1; 20 21 public interface VulnerabilityOccurrencesSummaryOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:grafeas.v1beta1.VulnerabilityOccurrencesSummary) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * A listing by resource of the number of fixable and total vulnerabilities. 31 * </pre> 32 * 33 * <code> 34 * repeated .grafeas.v1beta1.VulnerabilityOccurrencesSummary.FixableTotalByDigest counts = 1; 35 * </code> 36 */ 37 java.util.List<io.grafeas.v1beta1.VulnerabilityOccurrencesSummary.FixableTotalByDigest> getCountsList()38 getCountsList(); 39 /** 40 * 41 * 42 * <pre> 43 * A listing by resource of the number of fixable and total vulnerabilities. 44 * </pre> 45 * 46 * <code> 47 * repeated .grafeas.v1beta1.VulnerabilityOccurrencesSummary.FixableTotalByDigest counts = 1; 48 * </code> 49 */ getCounts(int index)50 io.grafeas.v1beta1.VulnerabilityOccurrencesSummary.FixableTotalByDigest getCounts(int index); 51 /** 52 * 53 * 54 * <pre> 55 * A listing by resource of the number of fixable and total vulnerabilities. 56 * </pre> 57 * 58 * <code> 59 * repeated .grafeas.v1beta1.VulnerabilityOccurrencesSummary.FixableTotalByDigest counts = 1; 60 * </code> 61 */ getCountsCount()62 int getCountsCount(); 63 /** 64 * 65 * 66 * <pre> 67 * A listing by resource of the number of fixable and total vulnerabilities. 68 * </pre> 69 * 70 * <code> 71 * repeated .grafeas.v1beta1.VulnerabilityOccurrencesSummary.FixableTotalByDigest counts = 1; 72 * </code> 73 */ 74 java.util.List< 75 ? extends 76 io.grafeas.v1beta1.VulnerabilityOccurrencesSummary.FixableTotalByDigestOrBuilder> getCountsOrBuilderList()77 getCountsOrBuilderList(); 78 /** 79 * 80 * 81 * <pre> 82 * A listing by resource of the number of fixable and total vulnerabilities. 83 * </pre> 84 * 85 * <code> 86 * repeated .grafeas.v1beta1.VulnerabilityOccurrencesSummary.FixableTotalByDigest counts = 1; 87 * </code> 88 */ 89 io.grafeas.v1beta1.VulnerabilityOccurrencesSummary.FixableTotalByDigestOrBuilder getCountsOrBuilder(int index)90 getCountsOrBuilder(int index); 91 } 92