1 /* 2 * Copyright 2019 The Grafeas Authors. All rights reserved. 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 17 // Generated by the protocol buffer compiler. DO NOT EDIT! 18 // source: grafeas/v1/compliance.proto 19 20 package io.grafeas.v1; 21 22 public interface ComplianceVersionOrBuilder 23 extends 24 // @@protoc_insertion_point(interface_extends:grafeas.v1.ComplianceVersion) 25 com.google.protobuf.MessageOrBuilder { 26 27 /** 28 * 29 * 30 * <pre> 31 * The CPE URI (https://cpe.mitre.org/specification/) this benchmark is 32 * applicable to. 33 * </pre> 34 * 35 * <code>string cpe_uri = 1;</code> 36 * 37 * @return The cpeUri. 38 */ getCpeUri()39 java.lang.String getCpeUri(); 40 /** 41 * 42 * 43 * <pre> 44 * The CPE URI (https://cpe.mitre.org/specification/) this benchmark is 45 * applicable to. 46 * </pre> 47 * 48 * <code>string cpe_uri = 1;</code> 49 * 50 * @return The bytes for cpeUri. 51 */ getCpeUriBytes()52 com.google.protobuf.ByteString getCpeUriBytes(); 53 54 /** 55 * 56 * 57 * <pre> 58 * The name of the document that defines this benchmark, e.g. "CIS 59 * Container-Optimized OS". 60 * </pre> 61 * 62 * <code>string benchmark_document = 3;</code> 63 * 64 * @return The benchmarkDocument. 65 */ getBenchmarkDocument()66 java.lang.String getBenchmarkDocument(); 67 /** 68 * 69 * 70 * <pre> 71 * The name of the document that defines this benchmark, e.g. "CIS 72 * Container-Optimized OS". 73 * </pre> 74 * 75 * <code>string benchmark_document = 3;</code> 76 * 77 * @return The bytes for benchmarkDocument. 78 */ getBenchmarkDocumentBytes()79 com.google.protobuf.ByteString getBenchmarkDocumentBytes(); 80 81 /** 82 * 83 * 84 * <pre> 85 * The version of the benchmark. This is set to the version of the OS-specific 86 * CIS document the benchmark is defined in. 87 * </pre> 88 * 89 * <code>string version = 2;</code> 90 * 91 * @return The version. 92 */ getVersion()93 java.lang.String getVersion(); 94 /** 95 * 96 * 97 * <pre> 98 * The version of the benchmark. This is set to the version of the OS-specific 99 * CIS document the benchmark is defined in. 100 * </pre> 101 * 102 * <code>string version = 2;</code> 103 * 104 * @return The bytes for version. 105 */ getVersionBytes()106 com.google.protobuf.ByteString getVersionBytes(); 107 } 108