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/automl/v1/io.proto 18 19 package com.google.cloud.automl.v1; 20 21 public interface GcsSourceOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.automl.v1.GcsSource) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Required. Google Cloud Storage URIs to input files, up to 2000 31 * characters long. Accepted forms: 32 * * Full object path, e.g. gs://bucket/directory/object.csv 33 * </pre> 34 * 35 * <code>repeated string input_uris = 1 [(.google.api.field_behavior) = REQUIRED];</code> 36 * 37 * @return A list containing the inputUris. 38 */ getInputUrisList()39 java.util.List<java.lang.String> getInputUrisList(); 40 /** 41 * 42 * 43 * <pre> 44 * Required. Google Cloud Storage URIs to input files, up to 2000 45 * characters long. Accepted forms: 46 * * Full object path, e.g. gs://bucket/directory/object.csv 47 * </pre> 48 * 49 * <code>repeated string input_uris = 1 [(.google.api.field_behavior) = REQUIRED];</code> 50 * 51 * @return The count of inputUris. 52 */ getInputUrisCount()53 int getInputUrisCount(); 54 /** 55 * 56 * 57 * <pre> 58 * Required. Google Cloud Storage URIs to input files, up to 2000 59 * characters long. Accepted forms: 60 * * Full object path, e.g. gs://bucket/directory/object.csv 61 * </pre> 62 * 63 * <code>repeated string input_uris = 1 [(.google.api.field_behavior) = REQUIRED];</code> 64 * 65 * @param index The index of the element to return. 66 * @return The inputUris at the given index. 67 */ getInputUris(int index)68 java.lang.String getInputUris(int index); 69 /** 70 * 71 * 72 * <pre> 73 * Required. Google Cloud Storage URIs to input files, up to 2000 74 * characters long. Accepted forms: 75 * * Full object path, e.g. gs://bucket/directory/object.csv 76 * </pre> 77 * 78 * <code>repeated string input_uris = 1 [(.google.api.field_behavior) = REQUIRED];</code> 79 * 80 * @param index The index of the value to return. 81 * @return The bytes of the inputUris at the given index. 82 */ getInputUrisBytes(int index)83 com.google.protobuf.ByteString getInputUrisBytes(int index); 84 } 85