Class IntentsGrpc.IntentsBlockingStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractBlockingStub<IntentsGrpc.IntentsBlockingStub>
-
- com.google.cloud.dialogflow.cx.v3beta1.IntentsGrpc.IntentsBlockingStub
-
- Enclosing class:
- IntentsGrpc
public static final class IntentsGrpc.IntentsBlockingStub extends io.grpc.stub.AbstractBlockingStub<IntentsGrpc.IntentsBlockingStub>
A stub to allow clients to do synchronous rpc calls to service Intents.Service for managing [Intents][google.cloud.dialogflow.cx.v3beta1.Intent].
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected IntentsGrpc.IntentsBlockingStubbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions)IntentcreateIntent(CreateIntentRequest request)Creates an intent in the specified agent.com.google.protobuf.EmptydeleteIntent(DeleteIntentRequest request)Deletes the specified intent.IntentgetIntent(GetIntentRequest request)Retrieves the specified intent.ListIntentsResponselistIntents(ListIntentsRequest request)Returns the list of all intents in the specified agent.IntentupdateIntent(UpdateIntentRequest request)Updates the specified intent.
-
-
-
Method Detail
-
build
protected IntentsGrpc.IntentsBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
buildin classio.grpc.stub.AbstractStub<IntentsGrpc.IntentsBlockingStub>
-
listIntents
public ListIntentsResponse listIntents(ListIntentsRequest request)
Returns the list of all intents in the specified agent.
-
getIntent
public Intent getIntent(GetIntentRequest request)
Retrieves the specified intent.
-
createIntent
public Intent createIntent(CreateIntentRequest request)
Creates an intent in the specified agent. 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).
-
updateIntent
public Intent updateIntent(UpdateIntentRequest request)
Updates the specified intent. 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).
-
deleteIntent
public com.google.protobuf.Empty deleteIntent(DeleteIntentRequest request)
Deletes the specified intent. 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).
-
-