-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathces-api.json
More file actions
6838 lines (6838 loc) · 302 KB
/
ces-api.json
File metadata and controls
6838 lines (6838 loc) · 302 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/ces": {
"description": "Create, update, delete, and manage your Next Gen Agents"
},
"https://www.googleapis.com/auth/cloud-platform": {
"description": "See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account."
}
}
}
},
"basePath": "",
"baseUrl": "https://ces.googleapis.com/",
"batchPath": "batch",
"canonicalName": "Customer Engagement Suite",
"description": "",
"discoveryVersion": "v1",
"documentationLink": "https://cloud.google.com/customer-engagement-ai/conversational-agents/ps/reference",
"endpoints": [
{
"description": "Regional Endpoint",
"endpointUrl": "https://ces.us.rep.googleapis.com/",
"location": "us"
},
{
"description": "Regional Endpoint",
"endpointUrl": "https://ces.eu.rep.googleapis.com/",
"location": "eu"
}
],
"fullyEncodeReservedExpansion": true,
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
"x32": "http://www.google.com/images/icons/product/search-32.gif"
},
"id": "ces:v1",
"kind": "discovery#restDescription",
"mtlsRootUrl": "https://ces.mtls.googleapis.com/",
"name": "ces",
"ownerDomain": "google.com",
"ownerName": "Google",
"parameters": {
"$.xgafv": {
"description": "V1 error format.",
"enum": [
"1",
"2"
],
"enumDescriptions": [
"v1 error format",
"v2 error format"
],
"location": "query",
"type": "string"
},
"access_token": {
"description": "OAuth access token.",
"location": "query",
"type": "string"
},
"alt": {
"default": "json",
"description": "Data format for response.",
"enum": [
"json",
"media",
"proto"
],
"enumDescriptions": [
"Responses with Content-Type of application/json",
"Media download with context-dependent Content-Type",
"Responses with Content-Type of application/x-protobuf"
],
"location": "query",
"type": "string"
},
"callback": {
"description": "JSONP",
"location": "query",
"type": "string"
},
"fields": {
"description": "Selector specifying which fields to include in a partial response.",
"location": "query",
"type": "string"
},
"key": {
"description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"location": "query",
"type": "string"
},
"oauth_token": {
"description": "OAuth 2.0 token for the current user.",
"location": "query",
"type": "string"
},
"prettyPrint": {
"default": "true",
"description": "Returns response with indentations and line breaks.",
"location": "query",
"type": "boolean"
},
"quotaUser": {
"description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.",
"location": "query",
"type": "string"
},
"uploadType": {
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
"location": "query",
"type": "string"
},
"upload_protocol": {
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
"location": "query",
"type": "string"
}
},
"protocol": "rest",
"resources": {
"projects": {
"resources": {
"locations": {
"methods": {
"get": {
"description": "Gets information about a location.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}",
"httpMethod": "GET",
"id": "ces.projects.locations.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Resource name for the location.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "Location"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Lists information about the supported locations for this service. This method can be called in two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include public locations as well as private or other locations specifically visible to the project.",
"flatPath": "v1/projects/{projectsId}/locations",
"httpMethod": "GET",
"id": "ces.projects.locations.list",
"parameterOrder": [
"name"
],
"parameters": {
"extraLocationTypes": {
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
"location": "query",
"repeated": true,
"type": "string"
},
"filter": {
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like `\"displayName=tokyo\"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
"location": "query",
"type": "string"
},
"name": {
"description": "The resource that owns the locations collection, if applicable.",
"location": "path",
"pattern": "^projects/[^/]+$",
"required": true,
"type": "string"
},
"pageSize": {
"description": "The maximum number of results to return. If not set, the service selects a default.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page.",
"location": "query",
"type": "string"
}
},
"path": "v1/{+name}/locations",
"response": {
"$ref": "ListLocationsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
}
},
"resources": {
"apps": {
"methods": {
"create": {
"description": "Creates a new app in the given project and location.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps",
"httpMethod": "POST",
"id": "ces.projects.locations.apps.create",
"parameterOrder": [
"parent"
],
"parameters": {
"appId": {
"description": "Optional. The ID to use for the app, which will become the final component of the app's resource name. If not provided, a unique ID will be automatically assigned for the app.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name of the location to create an app in.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/apps",
"request": {
"$ref": "App"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"delete": {
"description": "Deletes the specified app.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}",
"httpMethod": "DELETE",
"id": "ces.projects.locations.apps.delete",
"parameterOrder": [
"name"
],
"parameters": {
"etag": {
"description": "Optional. The current etag of the app. If an etag is not provided, the deletion will overwrite any concurrent changes. If an etag is provided and does not match the current etag of the app, deletion will be blocked and an ABORTED error will be returned.",
"location": "query",
"type": "string"
},
"name": {
"description": "Required. The resource name of the app to delete.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"executeTool": {
"description": "Executes the given tool with the given arguments.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}:executeTool",
"httpMethod": "POST",
"id": "ces.projects.locations.apps.executeTool",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. The resource name of the app which the tool/toolset belongs to. Format: `projects/{project}/locations/{location}/apps/{app}`",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}:executeTool",
"request": {
"$ref": "ExecuteToolRequest"
},
"response": {
"$ref": "ExecuteToolResponse"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"exportApp": {
"description": "Exports the specified app.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}:exportApp",
"httpMethod": "POST",
"id": "ces.projects.locations.apps.exportApp",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The resource name of the app to export.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}:exportApp",
"request": {
"$ref": "ExportAppRequest"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"description": "Gets details of the specified app.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}",
"httpMethod": "GET",
"id": "ces.projects.locations.apps.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The resource name of the app to retrieve.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "App"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"importApp": {
"description": "Imports the specified app.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps:importApp",
"httpMethod": "POST",
"id": "ces.projects.locations.apps.importApp",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. The parent resource name with the location of the app to import.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/apps:importApp",
"request": {
"$ref": "ImportAppRequest"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Lists apps in the given project and location.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps",
"httpMethod": "GET",
"id": "ces.projects.locations.apps.list",
"parameterOrder": [
"parent"
],
"parameters": {
"filter": {
"description": "Optional. Filter to be applied when listing the apps. See https://google.aip.dev/160 for more details.",
"location": "query",
"type": "string"
},
"orderBy": {
"description": "Optional. Field to sort by. Only \"name\" and \"create_time\" is supported. See https://google.aip.dev/132#ordering for more details.",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. The next_page_token value returned from a previous list AgentService.ListApps call.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name of the location to list apps from.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/apps",
"response": {
"$ref": "ListAppsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"patch": {
"description": "Updates the specified app.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}",
"httpMethod": "PATCH",
"id": "ces.projects.locations.apps.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Identifier. The unique identifier of the app. Format: `projects/{project}/locations/{location}/apps/{app}`",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Optional. Field mask is used to control which fields get updated. If the mask is not present, all fields will be updated.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1/{+name}",
"request": {
"$ref": "App"
},
"response": {
"$ref": "App"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"retrieveToolSchema": {
"description": "Retrieve the schema of the given tool. The schema is computed on the fly for the given instance of the tool.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}:retrieveToolSchema",
"httpMethod": "POST",
"id": "ces.projects.locations.apps.retrieveToolSchema",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. The resource name of the app which the tool/toolset belongs to. Format: `projects/{project}/locations/{location}/apps/{app}`",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}:retrieveToolSchema",
"request": {
"$ref": "RetrieveToolSchemaRequest"
},
"response": {
"$ref": "RetrieveToolSchemaResponse"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
}
},
"resources": {
"agents": {
"methods": {
"create": {
"description": "Creates a new agent in the given app.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/agents",
"httpMethod": "POST",
"id": "ces.projects.locations.apps.agents.create",
"parameterOrder": [
"parent"
],
"parameters": {
"agentId": {
"description": "Optional. The ID to use for the agent, which will become the final component of the agent's resource name. If not provided, a unique ID will be automatically assigned for the agent.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name of the app to create an agent in.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/agents",
"request": {
"$ref": "Agent"
},
"response": {
"$ref": "Agent"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"delete": {
"description": "Deletes the specified agent.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/agents/{agentsId}",
"httpMethod": "DELETE",
"id": "ces.projects.locations.apps.agents.delete",
"parameterOrder": [
"name"
],
"parameters": {
"etag": {
"description": "Optional. The current etag of the agent. If an etag is not provided, the deletion will overwrite any concurrent changes. If an etag is provided and does not match the current etag of the agent, deletion will be blocked and an ABORTED error will be returned.",
"location": "query",
"type": "string"
},
"force": {
"description": "Optional. Indicates whether to forcefully delete the agent, even if it is still referenced by other app/agents/examples. * If `force = false`, the deletion fails if other agents/examples reference it. * If `force = true`, delete the agent and remove it from all referencing apps/agents/examples.",
"location": "query",
"type": "boolean"
},
"name": {
"description": "Required. The resource name of the agent to delete.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+/agents/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "Empty"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"description": "Gets details of the specified agent.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/agents/{agentsId}",
"httpMethod": "GET",
"id": "ces.projects.locations.apps.agents.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The resource name of the agent to retrieve.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+/agents/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "Agent"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Lists agents in the given app.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/agents",
"httpMethod": "GET",
"id": "ces.projects.locations.apps.agents.list",
"parameterOrder": [
"parent"
],
"parameters": {
"filter": {
"description": "Optional. Filter to be applied when listing the agents. See https://google.aip.dev/160 for more details.",
"location": "query",
"type": "string"
},
"orderBy": {
"description": "Optional. Field to sort by. Only \"name\" and \"create_time\" is supported. See https://google.aip.dev/132#ordering for more details.",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. The next_page_token value returned from a previous list AgentService.ListAgents call.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name of the app to list agents from.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/agents",
"response": {
"$ref": "ListAgentsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"patch": {
"description": "Updates the specified agent.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/agents/{agentsId}",
"httpMethod": "PATCH",
"id": "ces.projects.locations.apps.agents.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Identifier. The unique identifier of the agent. Format: `projects/{project}/locations/{location}/apps/{app}/agents/{agent}`",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+/agents/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Optional. Field mask is used to control which fields get updated. If the mask is not present, all fields will be updated.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1/{+name}",
"request": {
"$ref": "Agent"
},
"response": {
"$ref": "Agent"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
},
"changelogs": {
"methods": {
"get": {
"description": "Gets the specified changelog.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/changelogs/{changelogsId}",
"httpMethod": "GET",
"id": "ces.projects.locations.apps.changelogs.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The resource name of the changelog to retrieve.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+/changelogs/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "Changelog"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Lists the changelogs of the specified app.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/changelogs",
"httpMethod": "GET",
"id": "ces.projects.locations.apps.changelogs.list",
"parameterOrder": [
"parent"
],
"parameters": {
"filter": {
"description": "Optional. Filter to be applied when listing the changelogs. See https://google.aip.dev/160 for more details. The filter string can be used to filter by `action`, `resource_type`, `resource_name`, `author`, and `create_time`. The `:` comparator can be used for case-insensitive partial matching on string fields, while `=` performs an exact case-sensitive match. Examples: * `action:update` (case-insensitive partial match) * `action=\"Create\"` (case-sensitive exact match) * `resource_type:agent` * `resource_name:my-agent` * `author:me@example.com` * `create_time \u003e \"2025-01-01T00:00:00Z\"` * `create_time \u003c= \"2025-01-01T00:00:00Z\" AND resource_type:tool`",
"location": "query",
"type": "string"
},
"orderBy": {
"description": "Optional. Field to sort by. Only \"name\" and \"create_time\" is supported. See https://google.aip.dev/132#ordering for more details.",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. The next_page_token value returned from a previous list AgentService.ListChangelogs call.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name of the app to list changelogs from.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/changelogs",
"response": {
"$ref": "ListChangelogsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
},
"conversations": {
"methods": {
"batchDelete": {
"description": "Batch deletes the specified conversations.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/conversations:batchDelete",
"httpMethod": "POST",
"id": "ces.projects.locations.apps.conversations.batchDelete",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. The resource name of the app to delete conversations from. Format: `projects/{project}/locations/{location}/apps/{app}`",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/conversations:batchDelete",
"request": {
"$ref": "BatchDeleteConversationsRequest"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"delete": {
"description": "Deletes the specified conversation.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/conversations/{conversationsId}",
"httpMethod": "DELETE",
"id": "ces.projects.locations.apps.conversations.delete",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The resource name of the conversation to delete.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+/conversations/[^/]+$",
"required": true,
"type": "string"
},
"source": {
"deprecated": true,
"description": "Optional. Indicate the source of the conversation. If not set, Source.Live will be applied by default.",
"enum": [
"SOURCE_UNSPECIFIED",
"LIVE",
"SIMULATOR",
"EVAL"
],
"enumDescriptions": [
"Unspecified source.",
"The conversation is from the live end user.",
"The conversation is from the simulator.",
"The conversation is from the evaluation."
],
"location": "query",
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "Empty"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"description": "Gets details of the specified conversation.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/conversations/{conversationsId}",
"httpMethod": "GET",
"id": "ces.projects.locations.apps.conversations.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The resource name of the conversation to retrieve.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+/conversations/[^/]+$",
"required": true,
"type": "string"
},
"source": {
"deprecated": true,
"description": "Optional. Indicate the source of the conversation. If not set, all source will be searched.",
"enum": [
"SOURCE_UNSPECIFIED",
"LIVE",
"SIMULATOR",
"EVAL"
],
"enumDescriptions": [
"Unspecified source.",
"The conversation is from the live end user.",
"The conversation is from the simulator.",
"The conversation is from the evaluation."
],
"location": "query",
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "Conversation"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Lists conversations in the given app.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/conversations",
"httpMethod": "GET",
"id": "ces.projects.locations.apps.conversations.list",
"parameterOrder": [
"parent"
],
"parameters": {
"filter": {
"description": "Optional. Filter to be applied when listing the conversations. See https://google.aip.dev/160 for more details.",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. The next_page_token value returned from a previous list AgentService.ListConversations call.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name of the app to list conversations from.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
},
"source": {
"description": "Optional. Indicate the source of the conversation. If not set, Source.Live will be applied by default. Will be deprecated in favor of `sources` field.",
"enum": [
"SOURCE_UNSPECIFIED",
"LIVE",
"SIMULATOR",
"EVAL"
],
"enumDescriptions": [
"Unspecified source.",
"The conversation is from the live end user.",
"The conversation is from the simulator.",
"The conversation is from the evaluation."
],
"location": "query",
"type": "string"
},
"sources": {
"description": "Optional. Indicate the sources of the conversations. If not set, all available sources will be applied by default.",
"enum": [
"SOURCE_UNSPECIFIED",
"LIVE",
"SIMULATOR",
"EVAL"
],
"enumDescriptions": [
"Unspecified source.",
"The conversation is from the live end user.",
"The conversation is from the simulator.",
"The conversation is from the evaluation."
],
"location": "query",
"repeated": true,
"type": "string"
}
},
"path": "v1/{+parent}/conversations",
"response": {
"$ref": "ListConversationsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
},
"deployments": {
"methods": {
"create": {
"description": "Creates a new deployment in the given app.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/deployments",
"httpMethod": "POST",
"id": "ces.projects.locations.apps.deployments.create",
"parameterOrder": [
"parent"
],
"parameters": {
"deploymentId": {
"description": "Optional. The ID to use for the deployment, which will become the final component of the deployment's resource name. If not provided, a unique ID will be automatically assigned for the deployment.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The parent app. Format: `projects/{project}/locations/{location}/apps/{app}`",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/apps/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/deployments",
"request": {
"$ref": "Deployment"
},
"response": {
"$ref": "Deployment"
},
"scopes": [
"https://www.googleapis.com/auth/ces",
"https://www.googleapis.com/auth/cloud-platform"
]
},
"delete": {
"description": "Deletes the specified deployment.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apps/{appsId}/deployments/{deploymentsId}",
"httpMethod": "DELETE",
"id": "ces.projects.locations.apps.deployments.delete",
"parameterOrder": [
"name"
],
"parameters": {
"etag": {
"description": "Optional. The etag of the deployment. If an etag is provided and does not match the current etag of the deployment, deletion will be blocked and an ABORTED error will be returned.",
"location": "query",