Interface DataStoreConnectionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataStoreConnection
,DataStoreConnection.Builder
public interface DataStoreConnectionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDataStore()
The full name of the referenced data store.com.google.protobuf.ByteString
getDataStoreBytes()
The full name of the referenced data store.DataStoreType
getDataStoreType()
The type of the connected data store.int
getDataStoreTypeValue()
The type of the connected data store.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDataStoreTypeValue
int getDataStoreTypeValue()
The type of the connected data store.
.google.cloud.dialogflow.cx.v3.DataStoreType data_store_type = 1;
- Returns:
- The enum numeric value on the wire for dataStoreType.
-
getDataStoreType
DataStoreType getDataStoreType()
The type of the connected data store.
.google.cloud.dialogflow.cx.v3.DataStoreType data_store_type = 1;
- Returns:
- The dataStoreType.
-
getDataStore
String getDataStore()
The full name of the referenced data store. Formats: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}` `projects/{project}/locations/{location}/dataStores/{data_store}`
string data_store = 2;
- Returns:
- The dataStore.
-
getDataStoreBytes
com.google.protobuf.ByteString getDataStoreBytes()
The full name of the referenced data store. Formats: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}` `projects/{project}/locations/{location}/dataStores/{data_store}`
string data_store = 2;
- Returns:
- The bytes for dataStore.
-
-