• 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/datacatalog/v1/dataplex_spec.proto
18 
19 package com.google.cloud.datacatalog.v1;
20 
21 public interface DataplexTableSpecOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.datacatalog.v1.DataplexTableSpec)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * List of external tables registered by Dataplex in other systems based on
31    * the same underlying data.
32    * External tables allow to query this data in those systems.
33    * </pre>
34    *
35    * <code>repeated .google.cloud.datacatalog.v1.DataplexExternalTable external_tables = 1;</code>
36    */
getExternalTablesList()37   java.util.List<com.google.cloud.datacatalog.v1.DataplexExternalTable> getExternalTablesList();
38   /**
39    *
40    *
41    * <pre>
42    * List of external tables registered by Dataplex in other systems based on
43    * the same underlying data.
44    * External tables allow to query this data in those systems.
45    * </pre>
46    *
47    * <code>repeated .google.cloud.datacatalog.v1.DataplexExternalTable external_tables = 1;</code>
48    */
getExternalTables(int index)49   com.google.cloud.datacatalog.v1.DataplexExternalTable getExternalTables(int index);
50   /**
51    *
52    *
53    * <pre>
54    * List of external tables registered by Dataplex in other systems based on
55    * the same underlying data.
56    * External tables allow to query this data in those systems.
57    * </pre>
58    *
59    * <code>repeated .google.cloud.datacatalog.v1.DataplexExternalTable external_tables = 1;</code>
60    */
getExternalTablesCount()61   int getExternalTablesCount();
62   /**
63    *
64    *
65    * <pre>
66    * List of external tables registered by Dataplex in other systems based on
67    * the same underlying data.
68    * External tables allow to query this data in those systems.
69    * </pre>
70    *
71    * <code>repeated .google.cloud.datacatalog.v1.DataplexExternalTable external_tables = 1;</code>
72    */
73   java.util.List<? extends com.google.cloud.datacatalog.v1.DataplexExternalTableOrBuilder>
getExternalTablesOrBuilderList()74       getExternalTablesOrBuilderList();
75   /**
76    *
77    *
78    * <pre>
79    * List of external tables registered by Dataplex in other systems based on
80    * the same underlying data.
81    * External tables allow to query this data in those systems.
82    * </pre>
83    *
84    * <code>repeated .google.cloud.datacatalog.v1.DataplexExternalTable external_tables = 1;</code>
85    */
getExternalTablesOrBuilder( int index)86   com.google.cloud.datacatalog.v1.DataplexExternalTableOrBuilder getExternalTablesOrBuilder(
87       int index);
88 
89   /**
90    *
91    *
92    * <pre>
93    * Common Dataplex fields.
94    * </pre>
95    *
96    * <code>.google.cloud.datacatalog.v1.DataplexSpec dataplex_spec = 2;</code>
97    *
98    * @return Whether the dataplexSpec field is set.
99    */
hasDataplexSpec()100   boolean hasDataplexSpec();
101   /**
102    *
103    *
104    * <pre>
105    * Common Dataplex fields.
106    * </pre>
107    *
108    * <code>.google.cloud.datacatalog.v1.DataplexSpec dataplex_spec = 2;</code>
109    *
110    * @return The dataplexSpec.
111    */
getDataplexSpec()112   com.google.cloud.datacatalog.v1.DataplexSpec getDataplexSpec();
113   /**
114    *
115    *
116    * <pre>
117    * Common Dataplex fields.
118    * </pre>
119    *
120    * <code>.google.cloud.datacatalog.v1.DataplexSpec dataplex_spec = 2;</code>
121    */
getDataplexSpecOrBuilder()122   com.google.cloud.datacatalog.v1.DataplexSpecOrBuilder getDataplexSpecOrBuilder();
123 
124   /**
125    *
126    *
127    * <pre>
128    * Indicates if the table schema is managed by the user or not.
129    * </pre>
130    *
131    * <code>bool user_managed = 3;</code>
132    *
133    * @return The userManaged.
134    */
getUserManaged()135   boolean getUserManaged();
136 }
137