82
82
class EntryType (proto .Enum ):
83
83
r"""The enum field that lists all the types of entry resources in Data
84
84
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.
85
121
"""
86
122
ENTRY_TYPE_UNSPECIFIED = 0
87
123
TABLE = 2
@@ -990,7 +1026,16 @@ class DatabaseTableSpec(proto.Message):
990
1026
"""
991
1027
992
1028
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
+ """
994
1039
TABLE_TYPE_UNSPECIFIED = 0
995
1040
NATIVE = 1
996
1041
EXTERNAL = 2
@@ -1073,7 +1118,16 @@ class RoutineSpec(proto.Message):
1073
1118
"""
1074
1119
1075
1120
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
+ """
1077
1131
ROUTINE_TYPE_UNSPECIFIED = 0
1078
1132
SCALAR_FUNCTION = 1
1079
1133
PROCEDURE = 2
@@ -1094,7 +1148,18 @@ class Argument(proto.Message):
1094
1148
"""
1095
1149
1096
1150
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
+ """
1098
1163
MODE_UNSPECIFIED = 0
1099
1164
IN = 1
1100
1165
OUT = 2
0 commit comments