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/cloud/securitycenter/v1/exfiltration.proto 18 19 package com.google.cloud.securitycenter.v1; 20 21 public interface ExfiltrationOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.securitycenter.v1.Exfiltration) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * If there are multiple sources, then the data is considered "joined" between 31 * them. For instance, BigQuery can join multiple tables, and each 32 * table would be considered a source. 33 * </pre> 34 * 35 * <code>repeated .google.cloud.securitycenter.v1.ExfilResource sources = 1;</code> 36 */ getSourcesList()37 java.util.List<com.google.cloud.securitycenter.v1.ExfilResource> getSourcesList(); 38 /** 39 * 40 * 41 * <pre> 42 * If there are multiple sources, then the data is considered "joined" between 43 * them. For instance, BigQuery can join multiple tables, and each 44 * table would be considered a source. 45 * </pre> 46 * 47 * <code>repeated .google.cloud.securitycenter.v1.ExfilResource sources = 1;</code> 48 */ getSources(int index)49 com.google.cloud.securitycenter.v1.ExfilResource getSources(int index); 50 /** 51 * 52 * 53 * <pre> 54 * If there are multiple sources, then the data is considered "joined" between 55 * them. For instance, BigQuery can join multiple tables, and each 56 * table would be considered a source. 57 * </pre> 58 * 59 * <code>repeated .google.cloud.securitycenter.v1.ExfilResource sources = 1;</code> 60 */ getSourcesCount()61 int getSourcesCount(); 62 /** 63 * 64 * 65 * <pre> 66 * If there are multiple sources, then the data is considered "joined" between 67 * them. For instance, BigQuery can join multiple tables, and each 68 * table would be considered a source. 69 * </pre> 70 * 71 * <code>repeated .google.cloud.securitycenter.v1.ExfilResource sources = 1;</code> 72 */ 73 java.util.List<? extends com.google.cloud.securitycenter.v1.ExfilResourceOrBuilder> getSourcesOrBuilderList()74 getSourcesOrBuilderList(); 75 /** 76 * 77 * 78 * <pre> 79 * If there are multiple sources, then the data is considered "joined" between 80 * them. For instance, BigQuery can join multiple tables, and each 81 * table would be considered a source. 82 * </pre> 83 * 84 * <code>repeated .google.cloud.securitycenter.v1.ExfilResource sources = 1;</code> 85 */ getSourcesOrBuilder(int index)86 com.google.cloud.securitycenter.v1.ExfilResourceOrBuilder getSourcesOrBuilder(int index); 87 88 /** 89 * 90 * 91 * <pre> 92 * If there are multiple targets, each target would get a complete copy of the 93 * "joined" source data. 94 * </pre> 95 * 96 * <code>repeated .google.cloud.securitycenter.v1.ExfilResource targets = 2;</code> 97 */ getTargetsList()98 java.util.List<com.google.cloud.securitycenter.v1.ExfilResource> getTargetsList(); 99 /** 100 * 101 * 102 * <pre> 103 * If there are multiple targets, each target would get a complete copy of the 104 * "joined" source data. 105 * </pre> 106 * 107 * <code>repeated .google.cloud.securitycenter.v1.ExfilResource targets = 2;</code> 108 */ getTargets(int index)109 com.google.cloud.securitycenter.v1.ExfilResource getTargets(int index); 110 /** 111 * 112 * 113 * <pre> 114 * If there are multiple targets, each target would get a complete copy of the 115 * "joined" source data. 116 * </pre> 117 * 118 * <code>repeated .google.cloud.securitycenter.v1.ExfilResource targets = 2;</code> 119 */ getTargetsCount()120 int getTargetsCount(); 121 /** 122 * 123 * 124 * <pre> 125 * If there are multiple targets, each target would get a complete copy of the 126 * "joined" source data. 127 * </pre> 128 * 129 * <code>repeated .google.cloud.securitycenter.v1.ExfilResource targets = 2;</code> 130 */ 131 java.util.List<? extends com.google.cloud.securitycenter.v1.ExfilResourceOrBuilder> getTargetsOrBuilderList()132 getTargetsOrBuilderList(); 133 /** 134 * 135 * 136 * <pre> 137 * If there are multiple targets, each target would get a complete copy of the 138 * "joined" source data. 139 * </pre> 140 * 141 * <code>repeated .google.cloud.securitycenter.v1.ExfilResource targets = 2;</code> 142 */ getTargetsOrBuilder(int index)143 com.google.cloud.securitycenter.v1.ExfilResourceOrBuilder getTargetsOrBuilder(int index); 144 } 145