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/privacy/dlp/v2/dlp.proto 18 19 package com.google.privacy.dlp.v2; 20 21 public interface RiskAnalysisJobConfigOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.RiskAnalysisJobConfig) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Privacy metric to compute. 31 * </pre> 32 * 33 * <code>.google.privacy.dlp.v2.PrivacyMetric privacy_metric = 1;</code> 34 * 35 * @return Whether the privacyMetric field is set. 36 */ hasPrivacyMetric()37 boolean hasPrivacyMetric(); 38 /** 39 * 40 * 41 * <pre> 42 * Privacy metric to compute. 43 * </pre> 44 * 45 * <code>.google.privacy.dlp.v2.PrivacyMetric privacy_metric = 1;</code> 46 * 47 * @return The privacyMetric. 48 */ getPrivacyMetric()49 com.google.privacy.dlp.v2.PrivacyMetric getPrivacyMetric(); 50 /** 51 * 52 * 53 * <pre> 54 * Privacy metric to compute. 55 * </pre> 56 * 57 * <code>.google.privacy.dlp.v2.PrivacyMetric privacy_metric = 1;</code> 58 */ getPrivacyMetricOrBuilder()59 com.google.privacy.dlp.v2.PrivacyMetricOrBuilder getPrivacyMetricOrBuilder(); 60 61 /** 62 * 63 * 64 * <pre> 65 * Input dataset to compute metrics over. 66 * </pre> 67 * 68 * <code>.google.privacy.dlp.v2.BigQueryTable source_table = 2;</code> 69 * 70 * @return Whether the sourceTable field is set. 71 */ hasSourceTable()72 boolean hasSourceTable(); 73 /** 74 * 75 * 76 * <pre> 77 * Input dataset to compute metrics over. 78 * </pre> 79 * 80 * <code>.google.privacy.dlp.v2.BigQueryTable source_table = 2;</code> 81 * 82 * @return The sourceTable. 83 */ getSourceTable()84 com.google.privacy.dlp.v2.BigQueryTable getSourceTable(); 85 /** 86 * 87 * 88 * <pre> 89 * Input dataset to compute metrics over. 90 * </pre> 91 * 92 * <code>.google.privacy.dlp.v2.BigQueryTable source_table = 2;</code> 93 */ getSourceTableOrBuilder()94 com.google.privacy.dlp.v2.BigQueryTableOrBuilder getSourceTableOrBuilder(); 95 96 /** 97 * 98 * 99 * <pre> 100 * Actions to execute at the completion of the job. Are executed in the order 101 * provided. 102 * </pre> 103 * 104 * <code>repeated .google.privacy.dlp.v2.Action actions = 3;</code> 105 */ getActionsList()106 java.util.List<com.google.privacy.dlp.v2.Action> getActionsList(); 107 /** 108 * 109 * 110 * <pre> 111 * Actions to execute at the completion of the job. Are executed in the order 112 * provided. 113 * </pre> 114 * 115 * <code>repeated .google.privacy.dlp.v2.Action actions = 3;</code> 116 */ getActions(int index)117 com.google.privacy.dlp.v2.Action getActions(int index); 118 /** 119 * 120 * 121 * <pre> 122 * Actions to execute at the completion of the job. Are executed in the order 123 * provided. 124 * </pre> 125 * 126 * <code>repeated .google.privacy.dlp.v2.Action actions = 3;</code> 127 */ getActionsCount()128 int getActionsCount(); 129 /** 130 * 131 * 132 * <pre> 133 * Actions to execute at the completion of the job. Are executed in the order 134 * provided. 135 * </pre> 136 * 137 * <code>repeated .google.privacy.dlp.v2.Action actions = 3;</code> 138 */ getActionsOrBuilderList()139 java.util.List<? extends com.google.privacy.dlp.v2.ActionOrBuilder> getActionsOrBuilderList(); 140 /** 141 * 142 * 143 * <pre> 144 * Actions to execute at the completion of the job. Are executed in the order 145 * provided. 146 * </pre> 147 * 148 * <code>repeated .google.privacy.dlp.v2.Action actions = 3;</code> 149 */ getActionsOrBuilder(int index)150 com.google.privacy.dlp.v2.ActionOrBuilder getActionsOrBuilder(int index); 151 } 152