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 OutputConfigOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.asset.v1.OutputConfig) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Destination on Cloud Storage. 31 * </pre> 32 * 33 * <code>.google.cloud.asset.v1.GcsDestination gcs_destination = 1;</code> 34 * 35 * @return Whether the gcsDestination field is set. 36 */ hasGcsDestination()37 boolean hasGcsDestination(); 38 /** 39 * 40 * 41 * <pre> 42 * Destination on Cloud Storage. 43 * </pre> 44 * 45 * <code>.google.cloud.asset.v1.GcsDestination gcs_destination = 1;</code> 46 * 47 * @return The gcsDestination. 48 */ getGcsDestination()49 com.google.cloud.asset.v1.GcsDestination getGcsDestination(); 50 /** 51 * 52 * 53 * <pre> 54 * Destination on Cloud Storage. 55 * </pre> 56 * 57 * <code>.google.cloud.asset.v1.GcsDestination gcs_destination = 1;</code> 58 */ getGcsDestinationOrBuilder()59 com.google.cloud.asset.v1.GcsDestinationOrBuilder getGcsDestinationOrBuilder(); 60 61 /** 62 * 63 * 64 * <pre> 65 * Destination on BigQuery. The output table stores the fields in asset 66 * Protobuf as columns in BigQuery. 67 * </pre> 68 * 69 * <code>.google.cloud.asset.v1.BigQueryDestination bigquery_destination = 2;</code> 70 * 71 * @return Whether the bigqueryDestination field is set. 72 */ hasBigqueryDestination()73 boolean hasBigqueryDestination(); 74 /** 75 * 76 * 77 * <pre> 78 * Destination on BigQuery. The output table stores the fields in asset 79 * Protobuf as columns in BigQuery. 80 * </pre> 81 * 82 * <code>.google.cloud.asset.v1.BigQueryDestination bigquery_destination = 2;</code> 83 * 84 * @return The bigqueryDestination. 85 */ getBigqueryDestination()86 com.google.cloud.asset.v1.BigQueryDestination getBigqueryDestination(); 87 /** 88 * 89 * 90 * <pre> 91 * Destination on BigQuery. The output table stores the fields in asset 92 * Protobuf as columns in BigQuery. 93 * </pre> 94 * 95 * <code>.google.cloud.asset.v1.BigQueryDestination bigquery_destination = 2;</code> 96 */ getBigqueryDestinationOrBuilder()97 com.google.cloud.asset.v1.BigQueryDestinationOrBuilder getBigqueryDestinationOrBuilder(); 98 getDestinationCase()99 public com.google.cloud.asset.v1.OutputConfig.DestinationCase getDestinationCase(); 100 } 101