[BindServiceMethod(typeof(DataStoreService), "BindService")]
public abstract class DataStoreService.DataStoreServiceBase
Reference documentation and code samples for the Discovery Engine v1 API class DataStoreService.DataStoreServiceBase.
Base class for server-side implementations of DataStoreService
Namespace
Google.Cloud.DiscoveryEngine.V1Assembly
Google.Cloud.DiscoveryEngine.V1.dll
Methods
CreateDataStore(CreateDataStoreRequest, ServerCallContext)
public virtual Task<Operation> CreateDataStore(CreateDataStoreRequest request, ServerCallContext context)
Creates a [DataStore][google.cloud.discoveryengine.v1.DataStore].
DataStore is for storing [Documents][google.cloud.discoveryengine.v1.Document]. To serve these documents for Search, or Recommendation use case, an [Engine][google.cloud.discoveryengine.v1.Engine] needs to be created separately.
Parameters | |
---|---|
Name | Description |
request |
CreateDataStoreRequest The request received from the client. |
context |
ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskOperation |
The response to send back to the client (wrapped by a task). |
DeleteDataStore(DeleteDataStoreRequest, ServerCallContext)
public virtual Task<Operation> DeleteDataStore(DeleteDataStoreRequest request, ServerCallContext context)
Deletes a [DataStore][google.cloud.discoveryengine.v1.DataStore].
Parameters | |
---|---|
Name | Description |
request |
DeleteDataStoreRequest The request received from the client. |
context |
ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskOperation |
The response to send back to the client (wrapped by a task). |
GetDataStore(GetDataStoreRequest, ServerCallContext)
public virtual Task<DataStore> GetDataStore(GetDataStoreRequest request, ServerCallContext context)
Gets a [DataStore][google.cloud.discoveryengine.v1.DataStore].
Parameters | |
---|---|
Name | Description |
request |
GetDataStoreRequest The request received from the client. |
context |
ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskDataStore |
The response to send back to the client (wrapped by a task). |
ListDataStores(ListDataStoresRequest, ServerCallContext)
public virtual Task<ListDataStoresResponse> ListDataStores(ListDataStoresRequest request, ServerCallContext context)
Lists all the [DataStore][google.cloud.discoveryengine.v1.DataStore]s associated with the project.
Parameters | |
---|---|
Name | Description |
request |
ListDataStoresRequest The request received from the client. |
context |
ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskListDataStoresResponse |
The response to send back to the client (wrapped by a task). |
UpdateDataStore(UpdateDataStoreRequest, ServerCallContext)
public virtual Task<DataStore> UpdateDataStore(UpdateDataStoreRequest request, ServerCallContext context)
Updates a [DataStore][google.cloud.discoveryengine.v1.DataStore]
Parameters | |
---|---|
Name | Description |
request |
UpdateDataStoreRequest The request received from the client. |
context |
ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskDataStore |
The response to send back to the client (wrapped by a task). |