• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 GcsDestinationOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.automl.v1.GcsDestination)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Required. Google Cloud Storage URI to output directory, up to 2000
31    * characters long.
32    * Accepted forms:
33    * * Prefix path: gs://bucket/directory
34    * The requesting user must have write permission to the bucket.
35    * The directory is created if it doesn't exist.
36    * </pre>
37    *
38    * <code>string output_uri_prefix = 1 [(.google.api.field_behavior) = REQUIRED];</code>
39    *
40    * @return The outputUriPrefix.
41    */
getOutputUriPrefix()42   java.lang.String getOutputUriPrefix();
43   /**
44    *
45    *
46    * <pre>
47    * Required. Google Cloud Storage URI to output directory, up to 2000
48    * characters long.
49    * Accepted forms:
50    * * Prefix path: gs://bucket/directory
51    * The requesting user must have write permission to the bucket.
52    * The directory is created if it doesn't exist.
53    * </pre>
54    *
55    * <code>string output_uri_prefix = 1 [(.google.api.field_behavior) = REQUIRED];</code>
56    *
57    * @return The bytes for outputUriPrefix.
58    */
getOutputUriPrefixBytes()59   com.google.protobuf.ByteString getOutputUriPrefixBytes();
60 }
61