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/asset/v1/asset_service.proto 18 19 package com.google.cloud.asset.v1; 20 21 public interface GcsOutputResultOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.asset.v1.GcsOutputResult) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * List of URIs of the Cloud Storage objects. Example: 31 * "gs://bucket_name/object_name". 32 * </pre> 33 * 34 * <code>repeated string uris = 1;</code> 35 * 36 * @return A list containing the uris. 37 */ getUrisList()38 java.util.List<java.lang.String> getUrisList(); 39 /** 40 * 41 * 42 * <pre> 43 * List of URIs of the Cloud Storage objects. Example: 44 * "gs://bucket_name/object_name". 45 * </pre> 46 * 47 * <code>repeated string uris = 1;</code> 48 * 49 * @return The count of uris. 50 */ getUrisCount()51 int getUrisCount(); 52 /** 53 * 54 * 55 * <pre> 56 * List of URIs of the Cloud Storage objects. Example: 57 * "gs://bucket_name/object_name". 58 * </pre> 59 * 60 * <code>repeated string uris = 1;</code> 61 * 62 * @param index The index of the element to return. 63 * @return The uris at the given index. 64 */ getUris(int index)65 java.lang.String getUris(int index); 66 /** 67 * 68 * 69 * <pre> 70 * List of URIs of the Cloud Storage objects. Example: 71 * "gs://bucket_name/object_name". 72 * </pre> 73 * 74 * <code>repeated string uris = 1;</code> 75 * 76 * @param index The index of the value to return. 77 * @return The bytes of the uris at the given index. 78 */ getUrisBytes(int index)79 com.google.protobuf.ByteString getUrisBytes(int index); 80 } 81