Package com.google.cloud.datacatalog.v1
Interface SchemaOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Schema
,Schema.Builder
public interface SchemaOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColumnSchema
getColumns(int index)
The unified GoogleSQL-like schema of columns.int
getColumnsCount()
The unified GoogleSQL-like schema of columns.List<ColumnSchema>
getColumnsList()
The unified GoogleSQL-like schema of columns.ColumnSchemaOrBuilder
getColumnsOrBuilder(int index)
The unified GoogleSQL-like schema of columns.List<? extends ColumnSchemaOrBuilder>
getColumnsOrBuilderList()
The unified GoogleSQL-like schema of columns.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getColumnsList
List<ColumnSchema> getColumnsList()
The unified GoogleSQL-like schema of columns. The overall maximum number of columns and nested columns is 10,000. The maximum nested depth is 15 levels.
repeated .google.cloud.datacatalog.v1.ColumnSchema columns = 2;
-
getColumns
ColumnSchema getColumns(int index)
The unified GoogleSQL-like schema of columns. The overall maximum number of columns and nested columns is 10,000. The maximum nested depth is 15 levels.
repeated .google.cloud.datacatalog.v1.ColumnSchema columns = 2;
-
getColumnsCount
int getColumnsCount()
The unified GoogleSQL-like schema of columns. The overall maximum number of columns and nested columns is 10,000. The maximum nested depth is 15 levels.
repeated .google.cloud.datacatalog.v1.ColumnSchema columns = 2;
-
getColumnsOrBuilderList
List<? extends ColumnSchemaOrBuilder> getColumnsOrBuilderList()
The unified GoogleSQL-like schema of columns. The overall maximum number of columns and nested columns is 10,000. The maximum nested depth is 15 levels.
repeated .google.cloud.datacatalog.v1.ColumnSchema columns = 2;
-
getColumnsOrBuilder
ColumnSchemaOrBuilder getColumnsOrBuilder(int index)
The unified GoogleSQL-like schema of columns. The overall maximum number of columns and nested columns is 10,000. The maximum nested depth is 15 levels.
repeated .google.cloud.datacatalog.v1.ColumnSchema columns = 2;
-
-