You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 16, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: grpc-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/AgentsGrpc.java
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -474,7 +474,7 @@ public void deleteAgent(
474
474
*
475
475
*
476
476
* <pre>
477
-
* Exports the specified agent to a ZIP file.
477
+
* Exports the specified agent to a binary file.
478
478
* </pre>
479
479
*/
480
480
publicvoidexportAgent(
@@ -487,9 +487,9 @@ public void exportAgent(
487
487
*
488
488
*
489
489
* <pre>
490
-
* Restores the specified agent from a ZIP file.
491
-
* Note that all existing intents, intent routes, entity types, pages and
492
-
* webhooks in the agent will be deleted.
490
+
* Restores the specified agent from a binary file.
491
+
* Replaces the current agent with a new one. Note that all existing resources
492
+
* in agent (e.g. intents, entity types, flows) will be removed.
493
493
* </pre>
494
494
*/
495
495
publicvoidrestoreAgent(
@@ -649,7 +649,7 @@ public void deleteAgent(
649
649
*
650
650
*
651
651
* <pre>
652
-
* Exports the specified agent to a ZIP file.
652
+
* Exports the specified agent to a binary file.
653
653
* </pre>
654
654
*/
655
655
publicvoidexportAgent(
@@ -665,9 +665,9 @@ public void exportAgent(
665
665
*
666
666
*
667
667
* <pre>
668
-
* Restores the specified agent from a ZIP file.
669
-
* Note that all existing intents, intent routes, entity types, pages and
670
-
* webhooks in the agent will be deleted.
668
+
* Restores the specified agent from a binary file.
669
+
* Replaces the current agent with a new one. Note that all existing resources
670
+
* in agent (e.g. intents, entity types, flows) will be removed.
671
671
* </pre>
672
672
*/
673
673
publicvoidrestoreAgent(
@@ -762,7 +762,7 @@ public com.google.protobuf.Empty deleteAgent(
Copy file name to clipboardExpand all lines: proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/FlowProto.java
+83-80Lines changed: 83 additions & 80 deletions
Original file line number
Diff line number
Diff line change
@@ -80,86 +80,87 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
Copy file name to clipboardExpand all lines: proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/QueryInput.java
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,11 @@
22
22
*
23
23
*
24
24
* <pre>
25
-
* Represents the query input. It can contain either:
25
+
* Represents the query input. It can contain one of:
26
26
* 1. A conversational query in the form of text.
27
27
* 2. An intent query that specifies which intent to trigger.
28
+
* 3. Natural language speech audio to be processed.
29
+
* 4. An event to be triggered.
28
30
* </pre>
29
31
*
30
32
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.QueryInput}
0 commit comments