Class CatalogServiceGrpc.CatalogServiceStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractAsyncStub<CatalogServiceGrpc.CatalogServiceStub>
-
- com.google.cloud.recommendationengine.v1beta1.CatalogServiceGrpc.CatalogServiceStub
-
- Enclosing class:
- CatalogServiceGrpc
public static final class CatalogServiceGrpc.CatalogServiceStub extends io.grpc.stub.AbstractAsyncStub<CatalogServiceGrpc.CatalogServiceStub>
A stub to allow clients to do asynchronous rpc calls to service CatalogService.Service for ingesting catalog information of the customer's website.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected CatalogServiceGrpc.CatalogServiceStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
void
createCatalogItem(CreateCatalogItemRequest request, io.grpc.stub.StreamObserver<CatalogItem> responseObserver)
Creates a catalog item.void
deleteCatalogItem(DeleteCatalogItemRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Deletes a catalog item.void
getCatalogItem(GetCatalogItemRequest request, io.grpc.stub.StreamObserver<CatalogItem> responseObserver)
Gets a specific catalog item.void
importCatalogItems(ImportCatalogItemsRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Bulk import of multiple catalog items.void
listCatalogItems(ListCatalogItemsRequest request, io.grpc.stub.StreamObserver<ListCatalogItemsResponse> responseObserver)
Gets a list of catalog items.void
updateCatalogItem(UpdateCatalogItemRequest request, io.grpc.stub.StreamObserver<CatalogItem> responseObserver)
Updates a catalog item.
-
-
-
Method Detail
-
build
protected CatalogServiceGrpc.CatalogServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<CatalogServiceGrpc.CatalogServiceStub>
-
createCatalogItem
public void createCatalogItem(CreateCatalogItemRequest request, io.grpc.stub.StreamObserver<CatalogItem> responseObserver)
Creates a catalog item.
-
getCatalogItem
public void getCatalogItem(GetCatalogItemRequest request, io.grpc.stub.StreamObserver<CatalogItem> responseObserver)
Gets a specific catalog item.
-
listCatalogItems
public void listCatalogItems(ListCatalogItemsRequest request, io.grpc.stub.StreamObserver<ListCatalogItemsResponse> responseObserver)
Gets a list of catalog items.
-
updateCatalogItem
public void updateCatalogItem(UpdateCatalogItemRequest request, io.grpc.stub.StreamObserver<CatalogItem> responseObserver)
Updates a catalog item. Partial updating is supported. Non-existing items will be created.
-
deleteCatalogItem
public void deleteCatalogItem(DeleteCatalogItemRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Deletes a catalog item.
-
importCatalogItems
public void importCatalogItems(ImportCatalogItemsRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Bulk import of multiple catalog items. Request processing may be synchronous. No partial updating supported. Non-existing items will be created. Operation.response is of type ImportResponse. Note that it is possible for a subset of the items to be successfully updated.
-
-