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 ColumnSchemagetColumns(int index)Required.intgetColumnsCount()Required.List<ColumnSchema>getColumnsList()Required.ColumnSchemaOrBuildergetColumnsOrBuilder(int index)Required.List<? extends ColumnSchemaOrBuilder>getColumnsOrBuilderList()Required.-
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()
Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be specified.
repeated .google.cloud.datacatalog.v1beta1.ColumnSchema columns = 2 [(.google.api.field_behavior) = REQUIRED];
-
getColumns
ColumnSchema getColumns(int index)
Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be specified.
repeated .google.cloud.datacatalog.v1beta1.ColumnSchema columns = 2 [(.google.api.field_behavior) = REQUIRED];
-
getColumnsCount
int getColumnsCount()
Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be specified.
repeated .google.cloud.datacatalog.v1beta1.ColumnSchema columns = 2 [(.google.api.field_behavior) = REQUIRED];
-
getColumnsOrBuilderList
List<? extends ColumnSchemaOrBuilder> getColumnsOrBuilderList()
Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be specified.
repeated .google.cloud.datacatalog.v1beta1.ColumnSchema columns = 2 [(.google.api.field_behavior) = REQUIRED];
-
getColumnsOrBuilder
ColumnSchemaOrBuilder getColumnsOrBuilder(int index)
Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be specified.
repeated .google.cloud.datacatalog.v1beta1.ColumnSchema columns = 2 [(.google.api.field_behavior) = REQUIRED];
-
-