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/datacatalog/v1/datacatalog.proto 18 19 package com.google.cloud.datacatalog.v1; 20 21 public interface DatabaseTableSpecOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.datacatalog.v1.DatabaseTableSpec) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Type of this table. 31 * </pre> 32 * 33 * <code>.google.cloud.datacatalog.v1.DatabaseTableSpec.TableType type = 1;</code> 34 * 35 * @return The enum numeric value on the wire for type. 36 */ getTypeValue()37 int getTypeValue(); 38 /** 39 * 40 * 41 * <pre> 42 * Type of this table. 43 * </pre> 44 * 45 * <code>.google.cloud.datacatalog.v1.DatabaseTableSpec.TableType type = 1;</code> 46 * 47 * @return The type. 48 */ getType()49 com.google.cloud.datacatalog.v1.DatabaseTableSpec.TableType getType(); 50 51 /** 52 * 53 * 54 * <pre> 55 * Output only. Fields specific to a Dataplex table and present only in the 56 * Dataplex table entries. 57 * </pre> 58 * 59 * <code> 60 * .google.cloud.datacatalog.v1.DataplexTableSpec dataplex_table = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; 61 * </code> 62 * 63 * @return Whether the dataplexTable field is set. 64 */ hasDataplexTable()65 boolean hasDataplexTable(); 66 /** 67 * 68 * 69 * <pre> 70 * Output only. Fields specific to a Dataplex table and present only in the 71 * Dataplex table entries. 72 * </pre> 73 * 74 * <code> 75 * .google.cloud.datacatalog.v1.DataplexTableSpec dataplex_table = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; 76 * </code> 77 * 78 * @return The dataplexTable. 79 */ getDataplexTable()80 com.google.cloud.datacatalog.v1.DataplexTableSpec getDataplexTable(); 81 /** 82 * 83 * 84 * <pre> 85 * Output only. Fields specific to a Dataplex table and present only in the 86 * Dataplex table entries. 87 * </pre> 88 * 89 * <code> 90 * .google.cloud.datacatalog.v1.DataplexTableSpec dataplex_table = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; 91 * </code> 92 */ getDataplexTableOrBuilder()93 com.google.cloud.datacatalog.v1.DataplexTableSpecOrBuilder getDataplexTableOrBuilder(); 94 95 /** 96 * 97 * 98 * <pre> 99 * Spec what aplies to tables that are actually views. 100 * Not set for "real" tables. 101 * </pre> 102 * 103 * <code>.google.cloud.datacatalog.v1.DatabaseTableSpec.DatabaseViewSpec database_view_spec = 3; 104 * </code> 105 * 106 * @return Whether the databaseViewSpec field is set. 107 */ hasDatabaseViewSpec()108 boolean hasDatabaseViewSpec(); 109 /** 110 * 111 * 112 * <pre> 113 * Spec what aplies to tables that are actually views. 114 * Not set for "real" tables. 115 * </pre> 116 * 117 * <code>.google.cloud.datacatalog.v1.DatabaseTableSpec.DatabaseViewSpec database_view_spec = 3; 118 * </code> 119 * 120 * @return The databaseViewSpec. 121 */ getDatabaseViewSpec()122 com.google.cloud.datacatalog.v1.DatabaseTableSpec.DatabaseViewSpec getDatabaseViewSpec(); 123 /** 124 * 125 * 126 * <pre> 127 * Spec what aplies to tables that are actually views. 128 * Not set for "real" tables. 129 * </pre> 130 * 131 * <code>.google.cloud.datacatalog.v1.DatabaseTableSpec.DatabaseViewSpec database_view_spec = 3; 132 * </code> 133 */ 134 com.google.cloud.datacatalog.v1.DatabaseTableSpec.DatabaseViewSpecOrBuilder getDatabaseViewSpecOrBuilder()135 getDatabaseViewSpecOrBuilder(); 136 } 137