Interface PagesGrpc.AsyncService
-
- All Known Implementing Classes:
PagesGrpc.PagesImplBase
- Enclosing class:
- PagesGrpc
public static interface PagesGrpc.AsyncService
Service for managing [Pages][google.cloud.dialogflow.cx.v3.Page].
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
createPage(CreatePageRequest request, io.grpc.stub.StreamObserver<Page> responseObserver)
Creates a page in the specified flow.default void
deletePage(DeletePageRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Deletes the specified page.default void
getPage(GetPageRequest request, io.grpc.stub.StreamObserver<Page> responseObserver)
Retrieves the specified page.default void
listPages(ListPagesRequest request, io.grpc.stub.StreamObserver<ListPagesResponse> responseObserver)
Returns the list of all pages in the specified flow.default void
updatePage(UpdatePageRequest request, io.grpc.stub.StreamObserver<Page> responseObserver)
Updates the specified page.
-
-
-
Method Detail
-
listPages
default void listPages(ListPagesRequest request, io.grpc.stub.StreamObserver<ListPagesResponse> responseObserver)
Returns the list of all pages in the specified flow.
-
getPage
default void getPage(GetPageRequest request, io.grpc.stub.StreamObserver<Page> responseObserver)
Retrieves the specified page.
-
createPage
default void createPage(CreatePageRequest request, io.grpc.stub.StreamObserver<Page> responseObserver)
Creates a page in the specified flow. Note: You should always train a flow prior to sending it queries. See the [training documentation](https://cloud.google.com/dialogflow/cx/docs/concept/training).
-
updatePage
default void updatePage(UpdatePageRequest request, io.grpc.stub.StreamObserver<Page> responseObserver)
Updates the specified page. Note: You should always train a flow prior to sending it queries. See the [training documentation](https://cloud.google.com/dialogflow/cx/docs/concept/training).
-
deletePage
default void deletePage(DeletePageRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Deletes the specified page. Note: You should always train a flow prior to sending it queries. See the [training documentation](https://cloud.google.com/dialogflow/cx/docs/concept/training).
-
-