8282class EntryType (proto .Enum ):
8383 r"""The enum field that lists all the types of entry resources in Data
8484 Catalog. For example, a BigQuery table entry has the ``TABLE`` type.
85+
86+ Values:
87+ ENTRY_TYPE_UNSPECIFIED (0):
88+ Default unknown type.
89+ TABLE (2):
90+ The entry type that has a GoogleSQL schema,
91+ including logical views.
92+ MODEL (5):
93+ Output only. The type of models.
94+
95+ For more information, see [Supported models in BigQuery ML]
96+ (https://cloud.google.com/bigquery-ml/docs/introduction#supported_models_in).
97+ DATA_STREAM (3):
98+ An entry type for streaming entries. For
99+ example, a Pub/Sub topic.
100+ FILESET (4):
101+ An entry type for a set of files or objects.
102+ For example, a Cloud Storage fileset.
103+ CLUSTER (6):
104+ A group of servers that work together. For
105+ example, a Kafka cluster.
106+ DATABASE (7):
107+ A database.
108+ DATA_SOURCE_CONNECTION (8):
109+ Output only. Connection to a data source. For
110+ example, a BigQuery connection.
111+ ROUTINE (9):
112+ Output only. Routine, for example, a BigQuery
113+ routine.
114+ LAKE (10):
115+ A Dataplex lake.
116+ ZONE (11):
117+ A Dataplex zone.
118+ SERVICE (14):
119+ A service, for example, a Dataproc Metastore
120+ service.
85121 """
86122 ENTRY_TYPE_UNSPECIFIED = 0
87123 TABLE = 2
@@ -990,7 +1026,16 @@ class DatabaseTableSpec(proto.Message):
9901026 """
9911027
9921028 class TableType (proto .Enum ):
993- r"""Type of the table."""
1029+ r"""Type of the table.
1030+
1031+ Values:
1032+ TABLE_TYPE_UNSPECIFIED (0):
1033+ Default unknown table type.
1034+ NATIVE (1):
1035+ Native table.
1036+ EXTERNAL (2):
1037+ External table.
1038+ """
9941039 TABLE_TYPE_UNSPECIFIED = 0
9951040 NATIVE = 1
9961041 EXTERNAL = 2
@@ -1073,7 +1118,16 @@ class RoutineSpec(proto.Message):
10731118 """
10741119
10751120 class RoutineType (proto .Enum ):
1076- r"""The fine-grained type of the routine."""
1121+ r"""The fine-grained type of the routine.
1122+
1123+ Values:
1124+ ROUTINE_TYPE_UNSPECIFIED (0):
1125+ Unspecified type.
1126+ SCALAR_FUNCTION (1):
1127+ Non-builtin permanent scalar function.
1128+ PROCEDURE (2):
1129+ Stored procedure.
1130+ """
10771131 ROUTINE_TYPE_UNSPECIFIED = 0
10781132 SCALAR_FUNCTION = 1
10791133 PROCEDURE = 2
@@ -1094,7 +1148,18 @@ class Argument(proto.Message):
10941148 """
10951149
10961150 class Mode (proto .Enum ):
1097- r"""The input or output mode of the argument."""
1151+ r"""The input or output mode of the argument.
1152+
1153+ Values:
1154+ MODE_UNSPECIFIED (0):
1155+ Unspecified mode.
1156+ IN (1):
1157+ The argument is input-only.
1158+ OUT (2):
1159+ The argument is output-only.
1160+ INOUT (3):
1161+ The argument is both an input and an output.
1162+ """
10981163 MODE_UNSPECIFIED = 0
10991164 IN = 1
11001165 OUT = 2
0 commit comments