Package com.google.cloud.datacatalog.v1
Interface CloudSqlBigQueryConnectionSpecOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CloudSqlBigQueryConnectionSpec
,CloudSqlBigQueryConnectionSpec.Builder
public interface CloudSqlBigQueryConnectionSpecOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDatabase()
Database name.com.google.protobuf.ByteString
getDatabaseBytes()
Database name.String
getInstanceId()
Cloud SQL instance ID in the format of `project:location:instance`.com.google.protobuf.ByteString
getInstanceIdBytes()
Cloud SQL instance ID in the format of `project:location:instance`.CloudSqlBigQueryConnectionSpec.DatabaseType
getType()
Type of the Cloud SQL database.int
getTypeValue()
Type of the Cloud SQL database.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getInstanceId
String getInstanceId()
Cloud SQL instance ID in the format of `project:location:instance`.
string instance_id = 1;
- Returns:
- The instanceId.
-
getInstanceIdBytes
com.google.protobuf.ByteString getInstanceIdBytes()
Cloud SQL instance ID in the format of `project:location:instance`.
string instance_id = 1;
- Returns:
- The bytes for instanceId.
-
getDatabase
String getDatabase()
Database name.
string database = 2;
- Returns:
- The database.
-
getDatabaseBytes
com.google.protobuf.ByteString getDatabaseBytes()
Database name.
string database = 2;
- Returns:
- The bytes for database.
-
getTypeValue
int getTypeValue()
Type of the Cloud SQL database.
.google.cloud.datacatalog.v1.CloudSqlBigQueryConnectionSpec.DatabaseType type = 3;
- Returns:
- The enum numeric value on the wire for type.
-
getType
CloudSqlBigQueryConnectionSpec.DatabaseType getType()
Type of the Cloud SQL database.
.google.cloud.datacatalog.v1.CloudSqlBigQueryConnectionSpec.DatabaseType type = 3;
- Returns:
- The type.
-
-