Package com.google.cloud.datacatalog.v1
Interface DataplexTableSpecOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataplexTableSpec
,DataplexTableSpec.Builder
public interface DataplexTableSpecOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataplexSpec
getDataplexSpec()
Common Dataplex fields.DataplexSpecOrBuilder
getDataplexSpecOrBuilder()
Common Dataplex fields.DataplexExternalTable
getExternalTables(int index)
List of external tables registered by Dataplex in other systems based on the same underlying data.int
getExternalTablesCount()
List of external tables registered by Dataplex in other systems based on the same underlying data.List<DataplexExternalTable>
getExternalTablesList()
List of external tables registered by Dataplex in other systems based on the same underlying data.DataplexExternalTableOrBuilder
getExternalTablesOrBuilder(int index)
List of external tables registered by Dataplex in other systems based on the same underlying data.List<? extends DataplexExternalTableOrBuilder>
getExternalTablesOrBuilderList()
List of external tables registered by Dataplex in other systems based on the same underlying data.boolean
getUserManaged()
Indicates if the table schema is managed by the user or not.boolean
hasDataplexSpec()
Common Dataplex fields.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getExternalTablesList
List<DataplexExternalTable> getExternalTablesList()
List of external tables registered by Dataplex in other systems based on the same underlying data. External tables allow to query this data in those systems.
repeated .google.cloud.datacatalog.v1.DataplexExternalTable external_tables = 1;
-
getExternalTables
DataplexExternalTable getExternalTables(int index)
List of external tables registered by Dataplex in other systems based on the same underlying data. External tables allow to query this data in those systems.
repeated .google.cloud.datacatalog.v1.DataplexExternalTable external_tables = 1;
-
getExternalTablesCount
int getExternalTablesCount()
List of external tables registered by Dataplex in other systems based on the same underlying data. External tables allow to query this data in those systems.
repeated .google.cloud.datacatalog.v1.DataplexExternalTable external_tables = 1;
-
getExternalTablesOrBuilderList
List<? extends DataplexExternalTableOrBuilder> getExternalTablesOrBuilderList()
List of external tables registered by Dataplex in other systems based on the same underlying data. External tables allow to query this data in those systems.
repeated .google.cloud.datacatalog.v1.DataplexExternalTable external_tables = 1;
-
getExternalTablesOrBuilder
DataplexExternalTableOrBuilder getExternalTablesOrBuilder(int index)
List of external tables registered by Dataplex in other systems based on the same underlying data. External tables allow to query this data in those systems.
repeated .google.cloud.datacatalog.v1.DataplexExternalTable external_tables = 1;
-
hasDataplexSpec
boolean hasDataplexSpec()
Common Dataplex fields.
.google.cloud.datacatalog.v1.DataplexSpec dataplex_spec = 2;
- Returns:
- Whether the dataplexSpec field is set.
-
getDataplexSpec
DataplexSpec getDataplexSpec()
Common Dataplex fields.
.google.cloud.datacatalog.v1.DataplexSpec dataplex_spec = 2;
- Returns:
- The dataplexSpec.
-
getDataplexSpecOrBuilder
DataplexSpecOrBuilder getDataplexSpecOrBuilder()
Common Dataplex fields.
.google.cloud.datacatalog.v1.DataplexSpec dataplex_spec = 2;
-
getUserManaged
boolean getUserManaged()
Indicates if the table schema is managed by the user or not.
bool user_managed = 3;
- Returns:
- The userManaged.
-
-