Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commit 77f6650

Browse files
feat!: Remove flow level spell correction setting. feat: Change LRO response for ImportAgent from Empty to ImportAgentResponse, to include the created agent name. feat: Add parameter flag into page and intent parameters. feat: Add allow_playback_interruption to OutputAudioText to make it have feature parity with Text message type. feat: Enable sentiment analysis feature. feat: Enable EventInput. feat: Enable trigger_event in MatchIntentResponse. docs: Add documentation for sessions. (#42)
feat: Change LRO response for ImportAgent from Empty to ImportAgentResponse, to include the created agent name. feat: Remove flow level spell correction setting. feat: Add parameter flag into page and intent parameters. feat: Add `allow_playback_interruption` to OutputAudioText to make it have feature parity with Text message type. feat: Enable sentiment analysis feature. feat: Enable EventInput. feat: Enable `trigger_event` in MatchIntentResponse. docs: Add documentation for sessions. BREAKING CHANGE: removed enable_spell_correction from `NluSettings` This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/e7e729c8-48cb-4ca6-b514-0cf6cff070be/targets - [ ] To automatically regenerate this PR, check this box. PiperOrigin-RevId: 336005205 Source-Link: googleapis/googleapis@f7a34a4
1 parent 2ac186f commit 77f6650

File tree

120 files changed

+8305
-5738
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+8305
-5738
lines changed

grpc-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/EntityTypesGrpc.java

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
*
2727
*
2828
* <pre>
29-
* Service for managing
30-
* [EntityTypes][google.cloud.dialogflow.cx.v3beta1.EntityType].
29+
* Service for managing [EntityTypes][google.cloud.dialogflow.cx.v3beta1.EntityType].
3130
* </pre>
3231
*/
3332
@javax.annotation.Generated(
@@ -315,8 +314,7 @@ public EntityTypesFutureStub newStub(
315314
*
316315
*
317316
* <pre>
318-
* Service for managing
319-
* [EntityTypes][google.cloud.dialogflow.cx.v3beta1.EntityType].
317+
* Service for managing [EntityTypes][google.cloud.dialogflow.cx.v3beta1.EntityType].
320318
* </pre>
321319
*/
322320
public abstract static class EntityTypesImplBase implements io.grpc.BindableService {
@@ -435,8 +433,7 @@ public final io.grpc.ServerServiceDefinition bindService() {
435433
*
436434
*
437435
* <pre>
438-
* Service for managing
439-
* [EntityTypes][google.cloud.dialogflow.cx.v3beta1.EntityType].
436+
* Service for managing [EntityTypes][google.cloud.dialogflow.cx.v3beta1.EntityType].
440437
* </pre>
441438
*/
442439
public static final class EntityTypesStub
@@ -539,8 +536,7 @@ public void deleteEntityType(
539536
*
540537
*
541538
* <pre>
542-
* Service for managing
543-
* [EntityTypes][google.cloud.dialogflow.cx.v3beta1.EntityType].
539+
* Service for managing [EntityTypes][google.cloud.dialogflow.cx.v3beta1.EntityType].
544540
* </pre>
545541
*/
546542
public static final class EntityTypesBlockingStub
@@ -623,8 +619,7 @@ public com.google.protobuf.Empty deleteEntityType(
623619
*
624620
*
625621
* <pre>
626-
* Service for managing
627-
* [EntityTypes][google.cloud.dialogflow.cx.v3beta1.EntityType].
622+
* Service for managing [EntityTypes][google.cloud.dialogflow.cx.v3beta1.EntityType].
628623
* </pre>
629624
*/
630625
public static final class EntityTypesFutureStub

grpc-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SessionEntityTypesGrpc.java

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
*
2727
*
2828
* <pre>
29-
* Service for managing
30-
* [SessionEntityTypes][google.cloud.dialogflow.cx.v3beta1.SessionEntityType].
29+
* Service for managing [SessionEntityTypes][google.cloud.dialogflow.cx.v3beta1.SessionEntityType].
3130
* </pre>
3231
*/
3332
@javax.annotation.Generated(
@@ -338,8 +337,7 @@ public SessionEntityTypesFutureStub newStub(
338337
*
339338
*
340339
* <pre>
341-
* Service for managing
342-
* [SessionEntityTypes][google.cloud.dialogflow.cx.v3beta1.SessionEntityType].
340+
* Service for managing [SessionEntityTypes][google.cloud.dialogflow.cx.v3beta1.SessionEntityType].
343341
* </pre>
344342
*/
345343
public abstract static class SessionEntityTypesImplBase implements io.grpc.BindableService {
@@ -461,8 +459,7 @@ public final io.grpc.ServerServiceDefinition bindService() {
461459
*
462460
*
463461
* <pre>
464-
* Service for managing
465-
* [SessionEntityTypes][google.cloud.dialogflow.cx.v3beta1.SessionEntityType].
462+
* Service for managing [SessionEntityTypes][google.cloud.dialogflow.cx.v3beta1.SessionEntityType].
466463
* </pre>
467464
*/
468465
public static final class SessionEntityTypesStub
@@ -569,8 +566,7 @@ public void deleteSessionEntityType(
569566
*
570567
*
571568
* <pre>
572-
* Service for managing
573-
* [SessionEntityTypes][google.cloud.dialogflow.cx.v3beta1.SessionEntityType].
569+
* Service for managing [SessionEntityTypes][google.cloud.dialogflow.cx.v3beta1.SessionEntityType].
574570
* </pre>
575571
*/
576572
public static final class SessionEntityTypesBlockingStub
@@ -659,8 +655,7 @@ public com.google.protobuf.Empty deleteSessionEntityType(
659655
*
660656
*
661657
* <pre>
662-
* Service for managing
663-
* [SessionEntityTypes][google.cloud.dialogflow.cx.v3beta1.SessionEntityType].
658+
* Service for managing [SessionEntityTypes][google.cloud.dialogflow.cx.v3beta1.SessionEntityType].
664659
* </pre>
665660
*/
666661
public static final class SessionEntityTypesFutureStub

grpc-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SessionsGrpc.java

Lines changed: 22 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@
3030
*
3131
* <pre>
3232
* A session represents an interaction with a user. You retrieve user input
33-
* and pass it to the
34-
* [DetectIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.DetectIntent]
35-
* method to determine user intent and respond.
33+
* and pass it to the [DetectIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.DetectIntent] method to determine
34+
* user intent and respond.
3635
* </pre>
3736
*/
3837
@javax.annotation.Generated(
@@ -277,9 +276,8 @@ public SessionsFutureStub newStub(
277276
*
278277
* <pre>
279278
* A session represents an interaction with a user. You retrieve user input
280-
* and pass it to the
281-
* [DetectIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.DetectIntent]
282-
* method to determine user intent and respond.
279+
* and pass it to the [DetectIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.DetectIntent] method to determine
280+
* user intent and respond.
283281
* </pre>
284282
*/
285283
public abstract static class SessionsImplBase implements io.grpc.BindableService {
@@ -338,13 +336,9 @@ public void matchIntent(
338336
*
339337
*
340338
* <pre>
341-
* Fulfills a matched intent returned by
342-
* [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent].
343-
* Must be called after
344-
* [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent],
345-
* with input from
346-
* [MatchIntentResponse][google.cloud.dialogflow.cx.v3beta1.MatchIntentResponse].
347-
* Otherwise, the behavior is undefined.
339+
* Fulfills a matched intent returned by [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent].
340+
* Must be called after [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent], with input from
341+
* [MatchIntentResponse][google.cloud.dialogflow.cx.v3beta1.MatchIntentResponse]. Otherwise, the behavior is undefined.
348342
* </pre>
349343
*/
350344
public void fulfillIntent(
@@ -394,9 +388,8 @@ public final io.grpc.ServerServiceDefinition bindService() {
394388
*
395389
* <pre>
396390
* A session represents an interaction with a user. You retrieve user input
397-
* and pass it to the
398-
* [DetectIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.DetectIntent]
399-
* method to determine user intent and respond.
391+
* and pass it to the [DetectIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.DetectIntent] method to determine
392+
* user intent and respond.
400393
* </pre>
401394
*/
402395
public static final class SessionsStub extends io.grpc.stub.AbstractAsyncStub<SessionsStub> {
@@ -471,13 +464,9 @@ public void matchIntent(
471464
*
472465
*
473466
* <pre>
474-
* Fulfills a matched intent returned by
475-
* [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent].
476-
* Must be called after
477-
* [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent],
478-
* with input from
479-
* [MatchIntentResponse][google.cloud.dialogflow.cx.v3beta1.MatchIntentResponse].
480-
* Otherwise, the behavior is undefined.
467+
* Fulfills a matched intent returned by [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent].
468+
* Must be called after [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent], with input from
469+
* [MatchIntentResponse][google.cloud.dialogflow.cx.v3beta1.MatchIntentResponse]. Otherwise, the behavior is undefined.
481470
* </pre>
482471
*/
483472
public void fulfillIntent(
@@ -496,9 +485,8 @@ public void fulfillIntent(
496485
*
497486
* <pre>
498487
* A session represents an interaction with a user. You retrieve user input
499-
* and pass it to the
500-
* [DetectIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.DetectIntent]
501-
* method to determine user intent and respond.
488+
* and pass it to the [DetectIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.DetectIntent] method to determine
489+
* user intent and respond.
502490
* </pre>
503491
*/
504492
public static final class SessionsBlockingStub
@@ -544,13 +532,9 @@ public com.google.cloud.dialogflow.cx.v3beta1.MatchIntentResponse matchIntent(
544532
*
545533
*
546534
* <pre>
547-
* Fulfills a matched intent returned by
548-
* [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent].
549-
* Must be called after
550-
* [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent],
551-
* with input from
552-
* [MatchIntentResponse][google.cloud.dialogflow.cx.v3beta1.MatchIntentResponse].
553-
* Otherwise, the behavior is undefined.
535+
* Fulfills a matched intent returned by [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent].
536+
* Must be called after [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent], with input from
537+
* [MatchIntentResponse][google.cloud.dialogflow.cx.v3beta1.MatchIntentResponse]. Otherwise, the behavior is undefined.
554538
* </pre>
555539
*/
556540
public com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse fulfillIntent(
@@ -564,9 +548,8 @@ public com.google.cloud.dialogflow.cx.v3beta1.FulfillIntentResponse fulfillInten
564548
*
565549
* <pre>
566550
* A session represents an interaction with a user. You retrieve user input
567-
* and pass it to the
568-
* [DetectIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.DetectIntent]
569-
* method to determine user intent and respond.
551+
* and pass it to the [DetectIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.DetectIntent] method to determine
552+
* user intent and respond.
570553
* </pre>
571554
*/
572555
public static final class SessionsFutureStub
@@ -616,13 +599,9 @@ protected SessionsFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions
616599
*
617600
*
618601
* <pre>
619-
* Fulfills a matched intent returned by
620-
* [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent].
621-
* Must be called after
622-
* [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent],
623-
* with input from
624-
* [MatchIntentResponse][google.cloud.dialogflow.cx.v3beta1.MatchIntentResponse].
625-
* Otherwise, the behavior is undefined.
602+
* Fulfills a matched intent returned by [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent].
603+
* Must be called after [MatchIntent][google.cloud.dialogflow.cx.v3beta1.Sessions.MatchIntent], with input from
604+
* [MatchIntentResponse][google.cloud.dialogflow.cx.v3beta1.MatchIntentResponse]. Otherwise, the behavior is undefined.
626605
* </pre>
627606
*/
628607
public com.google.common.util.concurrent.ListenableFuture<
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html -->
3+
<differences>
4+
<difference>
5+
<differenceType>7012</differenceType>
6+
<className>com/google/cloud/dialogflow/cx/v3beta1/*OrBuilder</className>
7+
<method>* get*(*)</method>
8+
</difference>
9+
<difference>
10+
<differenceType>7012</differenceType>
11+
<className>com/google/cloud/dialogflow/cx/v3beta1/*OrBuilder</className>
12+
<method>boolean contains*(*)</method>
13+
</difference>
14+
<difference>
15+
<differenceType>7012</differenceType>
16+
<className>com/google/cloud/dialogflow/cx/v3beta1/*OrBuilder</className>
17+
<method>boolean has*(*)</method>
18+
</difference>
19+
20+
<!-- TODO: remove after 0.2.0 is released -->
21+
<difference>
22+
<differenceType>6011</differenceType>
23+
<className>com/google/cloud/dialogflow/cx/v3beta1/NluSettings</className>
24+
<field>ENABLE_SPELL_CORRECTION_FIELD_NUMBER</field>
25+
</difference>
26+
<difference>
27+
<differenceType>7002</differenceType>
28+
<className>com/google/cloud/dialogflow/cx/v3beta1/NluSettings*</className>
29+
<method>* *EnableSpellCorrection(*)</method>
30+
</difference>
31+
</differences>

proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/AgentProto.java

Lines changed: 57 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r
7171
internal_static_google_cloud_dialogflow_cx_v3beta1_RestoreAgentRequest_descriptor;
7272
static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
7373
internal_static_google_cloud_dialogflow_cx_v3beta1_RestoreAgentRequest_fieldAccessorTable;
74+
static final com.google.protobuf.Descriptors.Descriptor
75+
internal_static_google_cloud_dialogflow_cx_v3beta1_ImportAgentResponse_descriptor;
76+
static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
77+
internal_static_google_cloud_dialogflow_cx_v3beta1_ImportAgentResponse_fieldAccessorTable;
7478

7579
public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
7680
return descriptor;
@@ -125,49 +129,51 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
125129
+ "tent\030\002 \001(\014H\000B\007\n\005agent\"\203\001\n\023RestoreAgentRe"
126130
+ "quest\0225\n\004name\030\001 \001(\tB\'\340A\002\372A!\n\037dialogflow."
127131
+ "googleapis.com/Agent\022\023\n\tagent_uri\030\002 \001(\tH"
128-
+ "\000\022\027\n\ragent_content\030\003 \001(\014H\000B\007\n\005agent2\327\013\n\006"
129-
+ "Agents\022\275\001\n\nListAgents\0225.google.cloud.dia"
130-
+ "logflow.cx.v3beta1.ListAgentsRequest\0326.g"
131-
+ "oogle.cloud.dialogflow.cx.v3beta1.ListAg"
132-
+ "entsResponse\"@\202\323\344\223\0021\022//v3beta1/{parent=p"
133-
+ "rojects/*/locations/*}/agents\332A\006parent\022\252"
134-
+ "\001\n\010GetAgent\0223.google.cloud.dialogflow.cx"
135-
+ ".v3beta1.GetAgentRequest\032).google.cloud."
136-
+ "dialogflow.cx.v3beta1.Agent\">\202\323\344\223\0021\022//v3"
137-
+ "beta1/{name=projects/*/locations/*/agent"
138-
+ "s/*}\332A\004name\022\277\001\n\013CreateAgent\0226.google.clo"
139-
+ "ud.dialogflow.cx.v3beta1.CreateAgentRequ"
140-
+ "est\032).google.cloud.dialogflow.cx.v3beta1"
141-
+ ".Agent\"M\202\323\344\223\0028\"//v3beta1/{parent=project"
142-
+ "s/*/locations/*}/agents:\005agent\332A\014parent,"
143-
+ "agent\022\312\001\n\013UpdateAgent\0226.google.cloud.dia"
144-
+ "logflow.cx.v3beta1.UpdateAgentRequest\032)."
145-
+ "google.cloud.dialogflow.cx.v3beta1.Agent"
146-
+ "\"X\202\323\344\223\002>25/v3beta1/{agent.name=projects/"
147-
+ "*/locations/*/agents/*}:\005agent\332A\021agent,u"
148-
+ "pdate_mask\022\235\001\n\013DeleteAgent\0226.google.clou"
149-
+ "d.dialogflow.cx.v3beta1.DeleteAgentReque"
150-
+ "st\032\026.google.protobuf.Empty\">\202\323\344\223\0021*//v3b"
151-
+ "eta1/{name=projects/*/locations/*/agents"
152-
+ "/*}\332A\004name\022\327\001\n\013ExportAgent\0226.google.clou"
153-
+ "d.dialogflow.cx.v3beta1.ExportAgentReque"
154-
+ "st\032\035.google.longrunning.Operation\"q\202\323\344\223\002"
155-
+ ";\"6/v3beta1/{name=projects/*/locations/*"
156-
+ "/agents/*}:export:\001*\312A-\n\023ExportAgentResp"
157-
+ "onse\022\026google.protobuf.Struct\022\334\001\n\014Restore"
158-
+ "Agent\0227.google.cloud.dialogflow.cx.v3bet"
159-
+ "a1.RestoreAgentRequest\032\035.google.longrunn"
160-
+ "ing.Operation\"t\202\323\344\223\002<\"7/v3beta1/{name=pr"
161-
+ "ojects/*/locations/*/agents/*}:restore:\001"
162-
+ "*\312A/\n\025google.protobuf.Empty\022\026google.prot"
163-
+ "obuf.Struct\032x\312A\031dialogflow.googleapis.co"
164-
+ "m\322AYhttps://www.googleapis.com/auth/clou"
165-
+ "d-platform,https://www.googleapis.com/au"
166-
+ "th/dialogflowB\251\001\n&com.google.cloud.dialo"
167-
+ "gflow.cx.v3beta1B\nAgentProtoP\001ZDgoogle.g"
168-
+ "olang.org/genproto/googleapis/cloud/dial"
169-
+ "ogflow/cx/v3beta1;cx\370\001\001\242\002\002DF\252\002\"Google.Cl"
170-
+ "oud.Dialogflow.Cx.V3Beta1b\006proto3"
132+
+ "\000\022\027\n\ragent_content\030\003 \001(\014H\000B\007\n\005agent\"J\n\023I"
133+
+ "mportAgentResponse\0223\n\005agent\030\001 \001(\tB$\372A!\n\037"
134+
+ "dialogflow.googleapis.com/Agent2\327\013\n\006Agen"
135+
+ "ts\022\275\001\n\nListAgents\0225.google.cloud.dialogf"
136+
+ "low.cx.v3beta1.ListAgentsRequest\0326.googl"
137+
+ "e.cloud.dialogflow.cx.v3beta1.ListAgents"
138+
+ "Response\"@\202\323\344\223\0021\022//v3beta1/{parent=proje"
139+
+ "cts/*/locations/*}/agents\332A\006parent\022\252\001\n\010G"
140+
+ "etAgent\0223.google.cloud.dialogflow.cx.v3b"
141+
+ "eta1.GetAgentRequest\032).google.cloud.dial"
142+
+ "ogflow.cx.v3beta1.Agent\">\202\323\344\223\0021\022//v3beta"
143+
+ "1/{name=projects/*/locations/*/agents/*}"
144+
+ "\332A\004name\022\277\001\n\013CreateAgent\0226.google.cloud.d"
145+
+ "ialogflow.cx.v3beta1.CreateAgentRequest\032"
146+
+ ").google.cloud.dialogflow.cx.v3beta1.Age"
147+
+ "nt\"M\202\323\344\223\0028\"//v3beta1/{parent=projects/*/"
148+
+ "locations/*}/agents:\005agent\332A\014parent,agen"
149+
+ "t\022\312\001\n\013UpdateAgent\0226.google.cloud.dialogf"
150+
+ "low.cx.v3beta1.UpdateAgentRequest\032).goog"
151+
+ "le.cloud.dialogflow.cx.v3beta1.Agent\"X\202\323"
152+
+ "\344\223\002>25/v3beta1/{agent.name=projects/*/lo"
153+
+ "cations/*/agents/*}:\005agent\332A\021agent,updat"
154+
+ "e_mask\022\235\001\n\013DeleteAgent\0226.google.cloud.di"
155+
+ "alogflow.cx.v3beta1.DeleteAgentRequest\032\026"
156+
+ ".google.protobuf.Empty\">\202\323\344\223\0021*//v3beta1"
157+
+ "/{name=projects/*/locations/*/agents/*}\332"
158+
+ "A\004name\022\327\001\n\013ExportAgent\0226.google.cloud.di"
159+
+ "alogflow.cx.v3beta1.ExportAgentRequest\032\035"
160+
+ ".google.longrunning.Operation\"q\202\323\344\223\002;\"6/"
161+
+ "v3beta1/{name=projects/*/locations/*/age"
162+
+ "nts/*}:export:\001*\312A-\n\023ExportAgentResponse"
163+
+ "\022\026google.protobuf.Struct\022\334\001\n\014RestoreAgen"
164+
+ "t\0227.google.cloud.dialogflow.cx.v3beta1.R"
165+
+ "estoreAgentRequest\032\035.google.longrunning."
166+
+ "Operation\"t\202\323\344\223\002<\"7/v3beta1/{name=projec"
167+
+ "ts/*/locations/*/agents/*}:restore:\001*\312A/"
168+
+ "\n\025google.protobuf.Empty\022\026google.protobuf"
169+
+ ".Struct\032x\312A\031dialogflow.googleapis.com\322AY"
170+
+ "https://www.googleapis.com/auth/cloud-pl"
171+
+ "atform,https://www.googleapis.com/auth/d"
172+
+ "ialogflowB\251\001\n&com.google.cloud.dialogflo"
173+
+ "w.cx.v3beta1B\nAgentProtoP\001ZDgoogle.golan"
174+
+ "g.org/genproto/googleapis/cloud/dialogfl"
175+
+ "ow/cx/v3beta1;cx\370\001\001\242\002\002DF\252\002\"Google.Cloud."
176+
+ "Dialogflow.Cx.V3Beta1b\006proto3"
171177
};
172178
descriptor =
173179
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
@@ -279,6 +285,14 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
279285
new java.lang.String[] {
280286
"Name", "AgentUri", "AgentContent", "Agent",
281287
});
288+
internal_static_google_cloud_dialogflow_cx_v3beta1_ImportAgentResponse_descriptor =
289+
getDescriptor().getMessageTypes().get(11);
290+
internal_static_google_cloud_dialogflow_cx_v3beta1_ImportAgentResponse_fieldAccessorTable =
291+
new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
292+
internal_static_google_cloud_dialogflow_cx_v3beta1_ImportAgentResponse_descriptor,
293+
new java.lang.String[] {
294+
"Agent",
295+
});
282296
com.google.protobuf.ExtensionRegistry registry =
283297
com.google.protobuf.ExtensionRegistry.newInstance();
284298
registry.add(com.google.api.ClientProto.defaultHost);

0 commit comments

Comments
 (0)