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 OutputConfigOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.automl.v1.OutputConfig) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Required. The Google Cloud Storage location where the output is to be written to. 31 * For Image Object Detection, Text Extraction, Video Classification and 32 * Tables, in the given directory a new directory will be created with name: 33 * export_data-<dataset-display-name>-<timestamp-of-export-call> where 34 * timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format. All export 35 * output will be written into that directory. 36 * </pre> 37 * 38 * <code> 39 * .google.cloud.automl.v1.GcsDestination gcs_destination = 1 [(.google.api.field_behavior) = REQUIRED]; 40 * </code> 41 * 42 * @return Whether the gcsDestination field is set. 43 */ hasGcsDestination()44 boolean hasGcsDestination(); 45 /** 46 * 47 * 48 * <pre> 49 * Required. The Google Cloud Storage location where the output is to be written to. 50 * For Image Object Detection, Text Extraction, Video Classification and 51 * Tables, in the given directory a new directory will be created with name: 52 * export_data-<dataset-display-name>-<timestamp-of-export-call> where 53 * timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format. All export 54 * output will be written into that directory. 55 * </pre> 56 * 57 * <code> 58 * .google.cloud.automl.v1.GcsDestination gcs_destination = 1 [(.google.api.field_behavior) = REQUIRED]; 59 * </code> 60 * 61 * @return The gcsDestination. 62 */ getGcsDestination()63 com.google.cloud.automl.v1.GcsDestination getGcsDestination(); 64 /** 65 * 66 * 67 * <pre> 68 * Required. The Google Cloud Storage location where the output is to be written to. 69 * For Image Object Detection, Text Extraction, Video Classification and 70 * Tables, in the given directory a new directory will be created with name: 71 * export_data-<dataset-display-name>-<timestamp-of-export-call> where 72 * timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format. All export 73 * output will be written into that directory. 74 * </pre> 75 * 76 * <code> 77 * .google.cloud.automl.v1.GcsDestination gcs_destination = 1 [(.google.api.field_behavior) = REQUIRED]; 78 * </code> 79 */ getGcsDestinationOrBuilder()80 com.google.cloud.automl.v1.GcsDestinationOrBuilder getGcsDestinationOrBuilder(); 81 getDestinationCase()82 public com.google.cloud.automl.v1.OutputConfig.DestinationCase getDestinationCase(); 83 } 84