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 ExfilResourceOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.securitycenter.v1.ExfilResource) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Resource's URI (https://google.aip.dev/122#full-resource-names) 31 * </pre> 32 * 33 * <code>string name = 1;</code> 34 * 35 * @return The name. 36 */ getName()37 java.lang.String getName(); 38 /** 39 * 40 * 41 * <pre> 42 * Resource's URI (https://google.aip.dev/122#full-resource-names) 43 * </pre> 44 * 45 * <code>string name = 1;</code> 46 * 47 * @return The bytes for name. 48 */ getNameBytes()49 com.google.protobuf.ByteString getNameBytes(); 50 51 /** 52 * 53 * 54 * <pre> 55 * Subcomponents of the asset that is exfiltrated - these could be 56 * URIs used during exfiltration, table names, databases, filenames, etc. 57 * For example, multiple tables may be exfiltrated from the same CloudSQL 58 * instance, or multiple files from the same Cloud Storage bucket. 59 * </pre> 60 * 61 * <code>repeated string components = 2;</code> 62 * 63 * @return A list containing the components. 64 */ getComponentsList()65 java.util.List<java.lang.String> getComponentsList(); 66 /** 67 * 68 * 69 * <pre> 70 * Subcomponents of the asset that is exfiltrated - these could be 71 * URIs used during exfiltration, table names, databases, filenames, etc. 72 * For example, multiple tables may be exfiltrated from the same CloudSQL 73 * instance, or multiple files from the same Cloud Storage bucket. 74 * </pre> 75 * 76 * <code>repeated string components = 2;</code> 77 * 78 * @return The count of components. 79 */ getComponentsCount()80 int getComponentsCount(); 81 /** 82 * 83 * 84 * <pre> 85 * Subcomponents of the asset that is exfiltrated - these could be 86 * URIs used during exfiltration, table names, databases, filenames, etc. 87 * For example, multiple tables may be exfiltrated from the same CloudSQL 88 * instance, or multiple files from the same Cloud Storage bucket. 89 * </pre> 90 * 91 * <code>repeated string components = 2;</code> 92 * 93 * @param index The index of the element to return. 94 * @return The components at the given index. 95 */ getComponents(int index)96 java.lang.String getComponents(int index); 97 /** 98 * 99 * 100 * <pre> 101 * Subcomponents of the asset that is exfiltrated - these could be 102 * URIs used during exfiltration, table names, databases, filenames, etc. 103 * For example, multiple tables may be exfiltrated from the same CloudSQL 104 * instance, or multiple files from the same Cloud Storage bucket. 105 * </pre> 106 * 107 * <code>repeated string components = 2;</code> 108 * 109 * @param index The index of the value to return. 110 * @return The bytes of the components at the given index. 111 */ getComponentsBytes(int index)112 com.google.protobuf.ByteString getComponentsBytes(int index); 113 } 114