@google-cloud/discoveryengine 1.11.0 → 1.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/README.md +7 -0
  3. package/build/protos/google/cloud/discoveryengine/v1alpha/answer.proto +55 -2
  4. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +1 -1
  5. package/build/protos/google/cloud/discoveryengine/v1alpha/completion.proto +31 -0
  6. package/build/protos/google/cloud/discoveryengine/v1alpha/completion_service.proto +38 -0
  7. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +28 -9
  8. package/build/protos/google/cloud/discoveryengine/v1alpha/custom_tuning_model.proto +7 -1
  9. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store.proto +23 -0
  10. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +11 -1
  11. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +4 -1
  12. package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +6 -2
  13. package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +1 -1
  14. package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +114 -0
  15. package/build/protos/google/cloud/discoveryengine/v1alpha/purge_config.proto +57 -0
  16. package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +5 -0
  17. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +407 -11
  18. package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config.proto +14 -5
  19. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +126 -0
  20. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event_service.proto +3 -0
  21. package/build/protos/google/cloud/discoveryengine/v1beta/answer.proto +14 -0
  22. package/build/protos/google/cloud/discoveryengine/v1beta/completion.proto +31 -0
  23. package/build/protos/google/cloud/discoveryengine/v1beta/completion_service.proto +38 -0
  24. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +19 -0
  25. package/build/protos/google/cloud/discoveryengine/v1beta/custom_tuning_model.proto +7 -1
  26. package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +23 -0
  27. package/build/protos/google/cloud/discoveryengine/v1beta/data_store_service.proto +10 -0
  28. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +108 -0
  29. package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +111 -0
  30. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +303 -0
  31. package/build/protos/google/cloud/discoveryengine/v1beta/user_event_service.proto +24 -0
  32. package/build/protos/protos.d.ts +22409 -16038
  33. package/build/protos/protos.js +38744 -22699
  34. package/build/protos/protos.json +1506 -49
  35. package/build/src/v1alpha/completion_service_client.d.ts +91 -0
  36. package/build/src/v1alpha/completion_service_client.js +90 -0
  37. package/build/src/v1alpha/completion_service_client_config.json +10 -0
  38. package/build/src/v1alpha/conversational_search_service_client.d.ts +18 -0
  39. package/build/src/v1alpha/data_store_service_client.d.ts +12 -3
  40. package/build/src/v1alpha/data_store_service_client.js +8 -2
  41. package/build/src/v1alpha/document_service_client.d.ts +4 -0
  42. package/build/src/v1alpha/document_service_client.js +6 -0
  43. package/build/src/v1alpha/engine_service_client.js +6 -0
  44. package/build/src/v1alpha/estimate_billing_service_client.js +6 -0
  45. package/build/src/v1alpha/evaluation_service_client.js +6 -0
  46. package/build/src/v1alpha/project_service_client.js +6 -0
  47. package/build/src/v1alpha/sample_query_service_client.js +6 -0
  48. package/build/src/v1alpha/schema_service_client.js +6 -0
  49. package/build/src/v1alpha/search_service_client.d.ts +219 -21
  50. package/build/src/v1alpha/search_service_client.js +146 -14
  51. package/build/src/v1alpha/search_tuning_service_client.js +6 -0
  52. package/build/src/v1alpha/site_search_engine_service_client.d.ts +101 -0
  53. package/build/src/v1alpha/site_search_engine_service_client.js +70 -0
  54. package/build/src/v1alpha/site_search_engine_service_client_config.json +8 -0
  55. package/build/src/v1alpha/user_event_service_client.js +6 -0
  56. package/build/src/v1beta/completion_service_client.d.ts +91 -0
  57. package/build/src/v1beta/completion_service_client.js +84 -0
  58. package/build/src/v1beta/completion_service_client_config.json +10 -0
  59. package/build/src/v1beta/conversational_search_service_client.d.ts +18 -0
  60. package/build/src/v1beta/data_store_service_client.d.ts +9 -0
  61. package/build/src/v1beta/document_service_client.d.ts +2 -0
  62. package/build/src/v1beta/search_service_client.d.ts +147 -0
  63. package/build/src/v1beta/search_service_client.js +98 -0
  64. package/build/src/v1beta/user_event_service_client.d.ts +75 -0
  65. package/build/src/v1beta/user_event_service_client.js +42 -0
  66. package/build/src/v1beta/user_event_service_client_config.json +5 -0
  67. package/package.json +2 -2
@@ -8040,7 +8040,8 @@
8040
8040
  "content": {
8041
8041
  "oneof": [
8042
8042
  "unstructuredDocumentInfo",
8043
- "chunkInfo"
8043
+ "chunkInfo",
8044
+ "structuredDocumentInfo"
8044
8045
  ]
8045
8046
  }
8046
8047
  },
@@ -8052,6 +8053,10 @@
8052
8053
  "chunkInfo": {
8053
8054
  "type": "ChunkInfo",
8054
8055
  "id": 2
8056
+ },
8057
+ "structuredDocumentInfo": {
8058
+ "type": "StructuredDocumentInfo",
8059
+ "id": 3
8055
8060
  }
8056
8061
  },
8057
8062
  "nested": {
@@ -8084,6 +8089,13 @@
8084
8089
  },
8085
8090
  "nested": {
8086
8091
  "ChunkContent": {
8092
+ "oneofs": {
8093
+ "_relevanceScore": {
8094
+ "oneof": [
8095
+ "relevanceScore"
8096
+ ]
8097
+ }
8098
+ },
8087
8099
  "fields": {
8088
8100
  "content": {
8089
8101
  "type": "string",
@@ -8092,6 +8104,13 @@
8092
8104
  "pageIdentifier": {
8093
8105
  "type": "string",
8094
8106
  "id": 2
8107
+ },
8108
+ "relevanceScore": {
8109
+ "type": "float",
8110
+ "id": 3,
8111
+ "options": {
8112
+ "proto3_optional": true
8113
+ }
8095
8114
  }
8096
8115
  }
8097
8116
  }
@@ -8158,6 +8177,21 @@
8158
8177
  }
8159
8178
  }
8160
8179
  }
8180
+ },
8181
+ "StructuredDocumentInfo": {
8182
+ "fields": {
8183
+ "document": {
8184
+ "type": "string",
8185
+ "id": 1,
8186
+ "options": {
8187
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/Document"
8188
+ }
8189
+ },
8190
+ "structData": {
8191
+ "type": "google.protobuf.Struct",
8192
+ "id": 2
8193
+ }
8194
+ }
8161
8195
  }
8162
8196
  }
8163
8197
  },
@@ -8241,6 +8275,10 @@
8241
8275
  "rule": "repeated",
8242
8276
  "type": "ChunkInfo",
8243
8277
  "id": 5
8278
+ },
8279
+ "structData": {
8280
+ "type": "google.protobuf.Struct",
8281
+ "id": 6
8244
8282
  }
8245
8283
  },
8246
8284
  "nested": {
@@ -8323,7 +8361,8 @@
8323
8361
  "values": {
8324
8362
  "TYPE_UNSPECIFIED": 0,
8325
8363
  "ADVERSARIAL_QUERY": 1,
8326
- "NON_ANSWER_SEEKING_QUERY": 2
8364
+ "NON_ANSWER_SEEKING_QUERY": 2,
8365
+ "JAIL_BREAKING_QUERY": 3
8327
8366
  }
8328
8367
  }
8329
8368
  }
@@ -8344,7 +8383,9 @@
8344
8383
  "ADVERSARIAL_QUERY_IGNORED": 1,
8345
8384
  "NON_ANSWER_SEEKING_QUERY_IGNORED": 2,
8346
8385
  "OUT_OF_DOMAIN_QUERY_IGNORED": 3,
8347
- "POTENTIAL_POLICY_VIOLATION": 4
8386
+ "POTENTIAL_POLICY_VIOLATION": 4,
8387
+ "NO_RELEVANT_CONTENT": 5,
8388
+ "JAIL_BREAKING_QUERY_IGNORED": 6
8348
8389
  }
8349
8390
  }
8350
8391
  }
@@ -8574,6 +8615,50 @@
8574
8615
  }
8575
8616
  }
8576
8617
  },
8618
+ "CompletionSuggestion": {
8619
+ "oneofs": {
8620
+ "rankingInfo": {
8621
+ "oneof": [
8622
+ "globalScore",
8623
+ "frequency"
8624
+ ]
8625
+ }
8626
+ },
8627
+ "fields": {
8628
+ "globalScore": {
8629
+ "type": "double",
8630
+ "id": 2
8631
+ },
8632
+ "frequency": {
8633
+ "type": "int64",
8634
+ "id": 3
8635
+ },
8636
+ "suggestion": {
8637
+ "type": "string",
8638
+ "id": 1,
8639
+ "options": {
8640
+ "(google.api.field_behavior)": "REQUIRED"
8641
+ }
8642
+ },
8643
+ "languageCode": {
8644
+ "type": "string",
8645
+ "id": 4
8646
+ },
8647
+ "groupId": {
8648
+ "type": "string",
8649
+ "id": 5
8650
+ },
8651
+ "groupScore": {
8652
+ "type": "double",
8653
+ "id": 6
8654
+ },
8655
+ "alternativePhrases": {
8656
+ "rule": "repeated",
8657
+ "type": "string",
8658
+ "id": 7
8659
+ }
8660
+ }
8661
+ },
8577
8662
  "CompletionService": {
8578
8663
  "options": {
8579
8664
  "(google.api.default_host)": "discoveryengine.googleapis.com",
@@ -8657,6 +8742,66 @@
8657
8742
  }
8658
8743
  }
8659
8744
  ]
8745
+ },
8746
+ "ImportCompletionSuggestions": {
8747
+ "requestType": "ImportCompletionSuggestionsRequest",
8748
+ "responseType": "google.longrunning.Operation",
8749
+ "options": {
8750
+ "(google.api.http).post": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*}/completionSuggestions:import",
8751
+ "(google.api.http).body": "*",
8752
+ "(google.api.http).additional_bindings.post": "/v1alpha/{parent=projects/*/locations/*/dataStores/*}/completionSuggestions:import",
8753
+ "(google.api.http).additional_bindings.body": "*",
8754
+ "(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1alpha.ImportCompletionSuggestionsResponse",
8755
+ "(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.ImportCompletionSuggestionsMetadata"
8756
+ },
8757
+ "parsedOptions": [
8758
+ {
8759
+ "(google.api.http)": {
8760
+ "post": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*}/completionSuggestions:import",
8761
+ "body": "*",
8762
+ "additional_bindings": {
8763
+ "post": "/v1alpha/{parent=projects/*/locations/*/dataStores/*}/completionSuggestions:import",
8764
+ "body": "*"
8765
+ }
8766
+ }
8767
+ },
8768
+ {
8769
+ "(google.longrunning.operation_info)": {
8770
+ "response_type": "google.cloud.discoveryengine.v1alpha.ImportCompletionSuggestionsResponse",
8771
+ "metadata_type": "google.cloud.discoveryengine.v1alpha.ImportCompletionSuggestionsMetadata"
8772
+ }
8773
+ }
8774
+ ]
8775
+ },
8776
+ "PurgeCompletionSuggestions": {
8777
+ "requestType": "PurgeCompletionSuggestionsRequest",
8778
+ "responseType": "google.longrunning.Operation",
8779
+ "options": {
8780
+ "(google.api.http).post": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*}/completionSuggestions:purge",
8781
+ "(google.api.http).body": "*",
8782
+ "(google.api.http).additional_bindings.post": "/v1alpha/{parent=projects/*/locations/*/dataStores/*}/completionSuggestions:purge",
8783
+ "(google.api.http).additional_bindings.body": "*",
8784
+ "(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1alpha.PurgeCompletionSuggestionsResponse",
8785
+ "(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.PurgeCompletionSuggestionsMetadata"
8786
+ },
8787
+ "parsedOptions": [
8788
+ {
8789
+ "(google.api.http)": {
8790
+ "post": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*}/completionSuggestions:purge",
8791
+ "body": "*",
8792
+ "additional_bindings": {
8793
+ "post": "/v1alpha/{parent=projects/*/locations/*/dataStores/*}/completionSuggestions:purge",
8794
+ "body": "*"
8795
+ }
8796
+ }
8797
+ },
8798
+ {
8799
+ "(google.longrunning.operation_info)": {
8800
+ "response_type": "google.cloud.discoveryengine.v1alpha.PurgeCompletionSuggestionsResponse",
8801
+ "metadata_type": "google.cloud.discoveryengine.v1alpha.PurgeCompletionSuggestionsMetadata"
8802
+ }
8803
+ }
8804
+ ]
8660
8805
  }
8661
8806
  }
8662
8807
  },
@@ -8929,6 +9074,11 @@
8929
9074
  "gcsStagingDir": {
8930
9075
  "type": "string",
8931
9076
  "id": 2
9077
+ },
9078
+ "resourceTypes": {
9079
+ "rule": "repeated",
9080
+ "type": "string",
9081
+ "id": 3
8932
9082
  }
8933
9083
  }
8934
9084
  },
@@ -8969,6 +9119,46 @@
8969
9119
  }
8970
9120
  }
8971
9121
  },
9122
+ "AlloyDbSource": {
9123
+ "fields": {
9124
+ "projectId": {
9125
+ "type": "string",
9126
+ "id": 1
9127
+ },
9128
+ "locationId": {
9129
+ "type": "string",
9130
+ "id": 2,
9131
+ "options": {
9132
+ "(google.api.field_behavior)": "REQUIRED"
9133
+ }
9134
+ },
9135
+ "clusterId": {
9136
+ "type": "string",
9137
+ "id": 3,
9138
+ "options": {
9139
+ "(google.api.field_behavior)": "REQUIRED"
9140
+ }
9141
+ },
9142
+ "databaseId": {
9143
+ "type": "string",
9144
+ "id": 4,
9145
+ "options": {
9146
+ "(google.api.field_behavior)": "REQUIRED"
9147
+ }
9148
+ },
9149
+ "tableId": {
9150
+ "type": "string",
9151
+ "id": 5,
9152
+ "options": {
9153
+ "(google.api.field_behavior)": "REQUIRED"
9154
+ }
9155
+ },
9156
+ "gcsStagingDir": {
9157
+ "type": "string",
9158
+ "id": 6
9159
+ }
9160
+ }
9161
+ },
8972
9162
  "FirestoreSource": {
8973
9163
  "fields": {
8974
9164
  "projectId": {
@@ -9137,6 +9327,7 @@
9137
9327
  "spannerSource",
9138
9328
  "cloudSqlSource",
9139
9329
  "firestoreSource",
9330
+ "alloyDbSource",
9140
9331
  "bigtableSource"
9141
9332
  ]
9142
9333
  }
@@ -9170,6 +9361,10 @@
9170
9361
  "type": "FirestoreSource",
9171
9362
  "id": 13
9172
9363
  },
9364
+ "alloyDbSource": {
9365
+ "type": "AlloyDbSource",
9366
+ "id": 14
9367
+ },
9173
9368
  "bigtableSource": {
9174
9369
  "type": "BigtableSource",
9175
9370
  "id": 15
@@ -9309,6 +9504,90 @@
9309
9504
  }
9310
9505
  }
9311
9506
  },
9507
+ "ImportCompletionSuggestionsRequest": {
9508
+ "oneofs": {
9509
+ "source": {
9510
+ "oneof": [
9511
+ "inlineSource",
9512
+ "gcsSource",
9513
+ "bigquerySource"
9514
+ ]
9515
+ }
9516
+ },
9517
+ "fields": {
9518
+ "inlineSource": {
9519
+ "type": "InlineSource",
9520
+ "id": 2
9521
+ },
9522
+ "gcsSource": {
9523
+ "type": "GcsSource",
9524
+ "id": 3
9525
+ },
9526
+ "bigquerySource": {
9527
+ "type": "BigQuerySource",
9528
+ "id": 4
9529
+ },
9530
+ "parent": {
9531
+ "type": "string",
9532
+ "id": 1,
9533
+ "options": {
9534
+ "(google.api.field_behavior)": "REQUIRED",
9535
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/DataStore"
9536
+ }
9537
+ },
9538
+ "errorConfig": {
9539
+ "type": "ImportErrorConfig",
9540
+ "id": 5
9541
+ }
9542
+ },
9543
+ "nested": {
9544
+ "InlineSource": {
9545
+ "fields": {
9546
+ "suggestions": {
9547
+ "rule": "repeated",
9548
+ "type": "CompletionSuggestion",
9549
+ "id": 1,
9550
+ "options": {
9551
+ "(google.api.field_behavior)": "REQUIRED"
9552
+ }
9553
+ }
9554
+ }
9555
+ }
9556
+ }
9557
+ },
9558
+ "ImportCompletionSuggestionsResponse": {
9559
+ "fields": {
9560
+ "errorSamples": {
9561
+ "rule": "repeated",
9562
+ "type": "google.rpc.Status",
9563
+ "id": 1
9564
+ },
9565
+ "errorConfig": {
9566
+ "type": "ImportErrorConfig",
9567
+ "id": 2
9568
+ }
9569
+ }
9570
+ },
9571
+ "ImportCompletionSuggestionsMetadata": {
9572
+ "fields": {
9573
+ "createTime": {
9574
+ "type": "google.protobuf.Timestamp",
9575
+ "id": 1
9576
+ },
9577
+ "updateTime": {
9578
+ "type": "google.protobuf.Timestamp",
9579
+ "id": 2
9580
+ },
9581
+ "successCount": {
9582
+ "type": "int64",
9583
+ "id": 3
9584
+ },
9585
+ "failureCount": {
9586
+ "type": "int64",
9587
+ "id": 4
9588
+ }
9589
+ }
9590
+ },
9312
9591
  "ImportSampleQueriesRequest": {
9313
9592
  "oneofs": {
9314
9593
  "source": {
@@ -9504,6 +9783,10 @@
9504
9783
  "rule": "repeated",
9505
9784
  "type": "Principal",
9506
9785
  "id": 1
9786
+ },
9787
+ "idpWide": {
9788
+ "type": "bool",
9789
+ "id": 2
9507
9790
  }
9508
9791
  }
9509
9792
  }
@@ -10016,7 +10299,8 @@
10016
10299
  "oneofs": {
10017
10300
  "source": {
10018
10301
  "oneof": [
10019
- "gcsSource"
10302
+ "gcsSource",
10303
+ "inlineSource"
10020
10304
  ]
10021
10305
  }
10022
10306
  },
@@ -10025,6 +10309,10 @@
10025
10309
  "type": "GcsSource",
10026
10310
  "id": 5
10027
10311
  },
10312
+ "inlineSource": {
10313
+ "type": "InlineSource",
10314
+ "id": 6
10315
+ },
10028
10316
  "parent": {
10029
10317
  "type": "string",
10030
10318
  "id": 1,
@@ -10048,6 +10336,21 @@
10048
10336
  "type": "bool",
10049
10337
  "id": 3
10050
10338
  }
10339
+ },
10340
+ "nested": {
10341
+ "InlineSource": {
10342
+ "fields": {
10343
+ "documents": {
10344
+ "rule": "repeated",
10345
+ "type": "string",
10346
+ "id": 1,
10347
+ "options": {
10348
+ "(google.api.field_behavior)": "REQUIRED",
10349
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/Document"
10350
+ }
10351
+ }
10352
+ }
10353
+ }
10051
10354
  }
10052
10355
  },
10053
10356
  "PurgeDocumentsResponse": {
@@ -10127,6 +10430,43 @@
10127
10430
  }
10128
10431
  }
10129
10432
  },
10433
+ "PurgeCompletionSuggestionsRequest": {
10434
+ "fields": {
10435
+ "parent": {
10436
+ "type": "string",
10437
+ "id": 1,
10438
+ "options": {
10439
+ "(google.api.field_behavior)": "REQUIRED",
10440
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/DataStore"
10441
+ }
10442
+ }
10443
+ }
10444
+ },
10445
+ "PurgeCompletionSuggestionsResponse": {
10446
+ "fields": {
10447
+ "purgeSucceeded": {
10448
+ "type": "bool",
10449
+ "id": 1
10450
+ },
10451
+ "errorSamples": {
10452
+ "rule": "repeated",
10453
+ "type": "google.rpc.Status",
10454
+ "id": 2
10455
+ }
10456
+ }
10457
+ },
10458
+ "PurgeCompletionSuggestionsMetadata": {
10459
+ "fields": {
10460
+ "createTime": {
10461
+ "type": "google.protobuf.Timestamp",
10462
+ "id": 1
10463
+ },
10464
+ "updateTime": {
10465
+ "type": "google.protobuf.Timestamp",
10466
+ "id": 2
10467
+ }
10468
+ }
10469
+ },
10130
10470
  "Condition": {
10131
10471
  "fields": {
10132
10472
  "queryTerms": {
@@ -10819,6 +11159,14 @@
10819
11159
  "type": "UserInfo",
10820
11160
  "id": 21
10821
11161
  },
11162
+ "languageCode": {
11163
+ "type": "string",
11164
+ "id": 35
11165
+ },
11166
+ "regionCode": {
11167
+ "type": "string",
11168
+ "id": 36
11169
+ },
10822
11170
  "facetSpecs": {
10823
11171
  "rule": "repeated",
10824
11172
  "type": "FacetSpec",
@@ -10866,9 +11214,32 @@
10866
11214
  "type": "string",
10867
11215
  "id": 22
10868
11216
  },
11217
+ "naturalLanguageQueryUnderstandingSpec": {
11218
+ "type": "NaturalLanguageQueryUnderstandingSpec",
11219
+ "id": 28
11220
+ },
11221
+ "searchAsYouTypeSpec": {
11222
+ "type": "SearchAsYouTypeSpec",
11223
+ "id": 31
11224
+ },
10869
11225
  "customFineTuningSpec": {
10870
11226
  "type": "CustomFineTuningSpec",
10871
11227
  "id": 34
11228
+ },
11229
+ "session": {
11230
+ "type": "string",
11231
+ "id": 41,
11232
+ "options": {
11233
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/Session"
11234
+ }
11235
+ },
11236
+ "sessionSpec": {
11237
+ "type": "SessionSpec",
11238
+ "id": 42
11239
+ },
11240
+ "relevanceThreshold": {
11241
+ "type": "RelevanceThreshold",
11242
+ "id": 44
10872
11243
  }
10873
11244
  },
10874
11245
  "nested": {
@@ -11143,6 +11514,10 @@
11143
11514
  "type": "bool",
11144
11515
  "id": 4
11145
11516
  },
11517
+ "ignoreLowRelevantContent": {
11518
+ "type": "bool",
11519
+ "id": 9
11520
+ },
11146
11521
  "modelPromptSpec": {
11147
11522
  "type": "ModelPromptSpec",
11148
11523
  "id": 5
@@ -11247,6 +11622,76 @@
11247
11622
  }
11248
11623
  }
11249
11624
  }
11625
+ },
11626
+ "NaturalLanguageQueryUnderstandingSpec": {
11627
+ "fields": {
11628
+ "filterExtractionCondition": {
11629
+ "type": "FilterExtractionCondition",
11630
+ "id": 1
11631
+ },
11632
+ "geoSearchQueryDetectionFieldNames": {
11633
+ "rule": "repeated",
11634
+ "type": "string",
11635
+ "id": 2
11636
+ }
11637
+ },
11638
+ "nested": {
11639
+ "FilterExtractionCondition": {
11640
+ "values": {
11641
+ "CONDITION_UNSPECIFIED": 0,
11642
+ "DISABLED": 1,
11643
+ "ENABLED": 2
11644
+ }
11645
+ }
11646
+ }
11647
+ },
11648
+ "SearchAsYouTypeSpec": {
11649
+ "fields": {
11650
+ "condition": {
11651
+ "type": "Condition",
11652
+ "id": 1
11653
+ }
11654
+ },
11655
+ "nested": {
11656
+ "Condition": {
11657
+ "values": {
11658
+ "CONDITION_UNSPECIFIED": 0,
11659
+ "DISABLED": 1,
11660
+ "ENABLED": 2
11661
+ }
11662
+ }
11663
+ }
11664
+ },
11665
+ "SessionSpec": {
11666
+ "oneofs": {
11667
+ "_searchResultPersistenceCount": {
11668
+ "oneof": [
11669
+ "searchResultPersistenceCount"
11670
+ ]
11671
+ }
11672
+ },
11673
+ "fields": {
11674
+ "queryId": {
11675
+ "type": "string",
11676
+ "id": 1
11677
+ },
11678
+ "searchResultPersistenceCount": {
11679
+ "type": "int32",
11680
+ "id": 2,
11681
+ "options": {
11682
+ "proto3_optional": true
11683
+ }
11684
+ }
11685
+ }
11686
+ },
11687
+ "RelevanceThreshold": {
11688
+ "values": {
11689
+ "RELEVANCE_THRESHOLD_UNSPECIFIED": 0,
11690
+ "LOWEST": 1,
11691
+ "LOW": 2,
11692
+ "MEDIUM": 3,
11693
+ "HIGH": 4
11694
+ }
11250
11695
  }
11251
11696
  }
11252
11697
  },
@@ -11303,6 +11748,19 @@
11303
11748
  "queryExpansionInfo": {
11304
11749
  "type": "QueryExpansionInfo",
11305
11750
  "id": 14
11751
+ },
11752
+ "naturalLanguageQueryUnderstandingInfo": {
11753
+ "type": "NaturalLanguageQueryUnderstandingInfo",
11754
+ "id": 15
11755
+ },
11756
+ "sessionInfo": {
11757
+ "type": "SessionInfo",
11758
+ "id": 19
11759
+ },
11760
+ "oneBoxResults": {
11761
+ "rule": "repeated",
11762
+ "type": "OneBoxResult",
11763
+ "id": 20
11306
11764
  }
11307
11765
  },
11308
11766
  "nested": {
@@ -11530,33 +11988,216 @@
11530
11988
  "NON_SUMMARY_SEEKING_QUERY_IGNORED": 2,
11531
11989
  "OUT_OF_DOMAIN_QUERY_IGNORED": 3,
11532
11990
  "POTENTIAL_POLICY_VIOLATION": 4,
11533
- "LLM_ADDON_NOT_ENABLED": 5
11991
+ "LLM_ADDON_NOT_ENABLED": 5,
11992
+ "NO_RELEVANT_CONTENT": 6,
11993
+ "JAIL_BREAKING_QUERY_IGNORED": 7
11994
+ }
11995
+ }
11996
+ }
11997
+ },
11998
+ "GeoSearchDebugInfo": {
11999
+ "fields": {
12000
+ "originalAddressQuery": {
12001
+ "type": "string",
12002
+ "id": 1
12003
+ },
12004
+ "errorMessage": {
12005
+ "type": "string",
12006
+ "id": 2
12007
+ }
12008
+ }
12009
+ },
12010
+ "QueryExpansionInfo": {
12011
+ "fields": {
12012
+ "expandedQuery": {
12013
+ "type": "bool",
12014
+ "id": 1
12015
+ },
12016
+ "pinnedResultCount": {
12017
+ "type": "int64",
12018
+ "id": 2
12019
+ }
12020
+ }
12021
+ },
12022
+ "NaturalLanguageQueryUnderstandingInfo": {
12023
+ "fields": {
12024
+ "extractedFilters": {
12025
+ "type": "string",
12026
+ "id": 1
12027
+ },
12028
+ "rewrittenQuery": {
12029
+ "type": "string",
12030
+ "id": 2
12031
+ },
12032
+ "structuredExtractedFilter": {
12033
+ "type": "StructuredExtractedFilter",
12034
+ "id": 3
12035
+ }
12036
+ },
12037
+ "nested": {
12038
+ "StructuredExtractedFilter": {
12039
+ "fields": {
12040
+ "expression": {
12041
+ "type": "Expression",
12042
+ "id": 1
12043
+ }
12044
+ },
12045
+ "nested": {
12046
+ "StringConstraint": {
12047
+ "fields": {
12048
+ "fieldName": {
12049
+ "type": "string",
12050
+ "id": 1
12051
+ },
12052
+ "values": {
12053
+ "rule": "repeated",
12054
+ "type": "string",
12055
+ "id": 2
12056
+ }
12057
+ }
12058
+ },
12059
+ "NumberConstraint": {
12060
+ "fields": {
12061
+ "fieldName": {
12062
+ "type": "string",
12063
+ "id": 1
12064
+ },
12065
+ "comparison": {
12066
+ "type": "Comparison",
12067
+ "id": 2
12068
+ },
12069
+ "value": {
12070
+ "type": "double",
12071
+ "id": 3
12072
+ }
12073
+ },
12074
+ "nested": {
12075
+ "Comparison": {
12076
+ "values": {
12077
+ "COMPARISON_UNSPECIFIED": 0,
12078
+ "EQUALS": 1,
12079
+ "LESS_THAN_EQUALS": 2,
12080
+ "LESS_THAN": 3,
12081
+ "GREATER_THAN_EQUALS": 4,
12082
+ "GREATER_THAN": 5
12083
+ }
12084
+ }
12085
+ }
12086
+ },
12087
+ "GeolocationConstraint": {
12088
+ "fields": {
12089
+ "fieldName": {
12090
+ "type": "string",
12091
+ "id": 1
12092
+ },
12093
+ "address": {
12094
+ "type": "string",
12095
+ "id": 2
12096
+ },
12097
+ "latitude": {
12098
+ "type": "double",
12099
+ "id": 4
12100
+ },
12101
+ "longitude": {
12102
+ "type": "double",
12103
+ "id": 5
12104
+ },
12105
+ "radiusInMeters": {
12106
+ "type": "float",
12107
+ "id": 3
12108
+ }
12109
+ }
12110
+ },
12111
+ "AndExpression": {
12112
+ "fields": {
12113
+ "expressions": {
12114
+ "rule": "repeated",
12115
+ "type": "Expression",
12116
+ "id": 1
12117
+ }
12118
+ }
12119
+ },
12120
+ "OrExpression": {
12121
+ "fields": {
12122
+ "expressions": {
12123
+ "rule": "repeated",
12124
+ "type": "Expression",
12125
+ "id": 1
12126
+ }
12127
+ }
12128
+ },
12129
+ "Expression": {
12130
+ "oneofs": {
12131
+ "expr": {
12132
+ "oneof": [
12133
+ "stringConstraint",
12134
+ "numberConstraint",
12135
+ "geolocationConstraint",
12136
+ "andExpr",
12137
+ "orExpr"
12138
+ ]
12139
+ }
12140
+ },
12141
+ "fields": {
12142
+ "stringConstraint": {
12143
+ "type": "StringConstraint",
12144
+ "id": 1
12145
+ },
12146
+ "numberConstraint": {
12147
+ "type": "NumberConstraint",
12148
+ "id": 2
12149
+ },
12150
+ "geolocationConstraint": {
12151
+ "type": "GeolocationConstraint",
12152
+ "id": 3
12153
+ },
12154
+ "andExpr": {
12155
+ "type": "AndExpression",
12156
+ "id": 4
12157
+ },
12158
+ "orExpr": {
12159
+ "type": "OrExpression",
12160
+ "id": 5
12161
+ }
12162
+ }
12163
+ }
11534
12164
  }
11535
12165
  }
11536
12166
  }
11537
12167
  },
11538
- "GeoSearchDebugInfo": {
12168
+ "SessionInfo": {
11539
12169
  "fields": {
11540
- "originalAddressQuery": {
12170
+ "name": {
11541
12171
  "type": "string",
11542
12172
  "id": 1
11543
12173
  },
11544
- "errorMessage": {
12174
+ "queryId": {
11545
12175
  "type": "string",
11546
12176
  "id": 2
11547
12177
  }
11548
12178
  }
11549
12179
  },
11550
- "QueryExpansionInfo": {
12180
+ "OneBoxResult": {
11551
12181
  "fields": {
11552
- "expandedQuery": {
11553
- "type": "bool",
12182
+ "oneBoxType": {
12183
+ "type": "OneBoxType",
11554
12184
  "id": 1
11555
12185
  },
11556
- "pinnedResultCount": {
11557
- "type": "int64",
12186
+ "searchResults": {
12187
+ "rule": "repeated",
12188
+ "type": "SearchResult",
11558
12189
  "id": 2
11559
12190
  }
12191
+ },
12192
+ "nested": {
12193
+ "OneBoxType": {
12194
+ "values": {
12195
+ "ONE_BOX_TYPE_UNSPECIFIED": 0,
12196
+ "PEOPLE": 1,
12197
+ "ORGANIZATION": 2,
12198
+ "SLACK": 3
12199
+ }
12200
+ }
11560
12201
  }
11561
12202
  }
11562
12203
  }
@@ -12169,6 +12810,11 @@
12169
12810
  "userPseudoId": {
12170
12811
  "type": "string",
12171
12812
  "id": 12
12813
+ },
12814
+ "userLabels": {
12815
+ "keyType": "string",
12816
+ "type": "string",
12817
+ "id": 13
12172
12818
  }
12173
12819
  },
12174
12820
  "nested": {
@@ -12448,7 +13094,8 @@
12448
13094
  "values": {
12449
13095
  "TYPE_UNSPECIFIED": 0,
12450
13096
  "ADVERSARIAL_QUERY": 1,
12451
- "NON_ANSWER_SEEKING_QUERY": 2
13097
+ "NON_ANSWER_SEEKING_QUERY": 2,
13098
+ "JAIL_BREAKING_QUERY": 3
12452
13099
  }
12453
13100
  }
12454
13101
  }
@@ -12708,11 +13355,19 @@
12708
13355
  },
12709
13356
  "createTime": {
12710
13357
  "type": "google.protobuf.Timestamp",
12711
- "id": 5
13358
+ "id": 5,
13359
+ "options": {
13360
+ "deprecated": true
13361
+ }
12712
13362
  },
12713
13363
  "trainingStartTime": {
12714
13364
  "type": "google.protobuf.Timestamp",
12715
13365
  "id": 6
13366
+ },
13367
+ "metrics": {
13368
+ "keyType": "string",
13369
+ "type": "double",
13370
+ "id": 7
12716
13371
  }
12717
13372
  },
12718
13373
  "nested": {
@@ -12723,7 +13378,8 @@
12723
13378
  "TRAINING": 2,
12724
13379
  "TRAINING_COMPLETE": 3,
12725
13380
  "READY_FOR_SERVING": 4,
12726
- "TRAINING_FAILED": 5
13381
+ "TRAINING_FAILED": 5,
13382
+ "NO_IMPROVEMENT": 6
12727
13383
  }
12728
13384
  }
12729
13385
  }
@@ -12781,6 +13437,10 @@
12781
13437
  "(google.api.field_behavior)": "OUTPUT_ONLY"
12782
13438
  }
12783
13439
  },
13440
+ "languageInfo": {
13441
+ "type": "LanguageInfo",
13442
+ "id": 14
13443
+ },
12784
13444
  "idpConfig": {
12785
13445
  "type": "IdpConfig",
12786
13446
  "id": 21,
@@ -12815,6 +13475,35 @@
12815
13475
  }
12816
13476
  }
12817
13477
  },
13478
+ "LanguageInfo": {
13479
+ "fields": {
13480
+ "languageCode": {
13481
+ "type": "string",
13482
+ "id": 1
13483
+ },
13484
+ "normalizedLanguageCode": {
13485
+ "type": "string",
13486
+ "id": 2,
13487
+ "options": {
13488
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
13489
+ }
13490
+ },
13491
+ "language": {
13492
+ "type": "string",
13493
+ "id": 3,
13494
+ "options": {
13495
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
13496
+ }
13497
+ },
13498
+ "region": {
13499
+ "type": "string",
13500
+ "id": 4,
13501
+ "options": {
13502
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
13503
+ }
13504
+ }
13505
+ }
13506
+ },
12818
13507
  "DocumentProcessingConfig": {
12819
13508
  "options": {
12820
13509
  "(google.api.resource).type": "discoveryengine.googleapis.com/DocumentProcessingConfig",
@@ -13077,6 +13766,7 @@
13077
13766
  "ADVANCED_SITE_SEARCH_DATA_SOURCE_UNSPECIFIED": 0,
13078
13767
  "METATAGS": 1,
13079
13768
  "PAGEMAP": 2,
13769
+ "URI_PATTERN_MAPPING": 3,
13080
13770
  "SCHEMA_ORG": 4
13081
13771
  }
13082
13772
  }
@@ -13299,6 +13989,10 @@
13299
13989
  "createAdvancedSiteSearch": {
13300
13990
  "type": "bool",
13301
13991
  "id": 4
13992
+ },
13993
+ "skipDefaultSchemaCreation": {
13994
+ "type": "bool",
13995
+ "id": 7
13302
13996
  }
13303
13997
  }
13304
13998
  },
@@ -17252,6 +17946,44 @@
17252
17946
  }
17253
17947
  }
17254
17948
  ]
17949
+ },
17950
+ "SetUriPatternDocumentData": {
17951
+ "requestType": "SetUriPatternDocumentDataRequest",
17952
+ "responseType": "google.longrunning.Operation",
17953
+ "options": {
17954
+ "(google.api.http).post": "/v1alpha/{site_search_engine=projects/*/locations/*/collections/*/dataStores/*/siteSearchEngine}:setUriPatternDocumentData",
17955
+ "(google.api.http).body": "*",
17956
+ "(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1alpha.SetUriPatternDocumentDataResponse",
17957
+ "(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.SetUriPatternDocumentDataMetadata"
17958
+ },
17959
+ "parsedOptions": [
17960
+ {
17961
+ "(google.api.http)": {
17962
+ "post": "/v1alpha/{site_search_engine=projects/*/locations/*/collections/*/dataStores/*/siteSearchEngine}:setUriPatternDocumentData",
17963
+ "body": "*"
17964
+ }
17965
+ },
17966
+ {
17967
+ "(google.longrunning.operation_info)": {
17968
+ "response_type": "google.cloud.discoveryengine.v1alpha.SetUriPatternDocumentDataResponse",
17969
+ "metadata_type": "google.cloud.discoveryengine.v1alpha.SetUriPatternDocumentDataMetadata"
17970
+ }
17971
+ }
17972
+ ]
17973
+ },
17974
+ "GetUriPatternDocumentData": {
17975
+ "requestType": "GetUriPatternDocumentDataRequest",
17976
+ "responseType": "GetUriPatternDocumentDataResponse",
17977
+ "options": {
17978
+ "(google.api.http).get": "/v1alpha/{site_search_engine=projects/*/locations/*/collections/*/dataStores/*/siteSearchEngine}:getUriPatternDocumentData"
17979
+ },
17980
+ "parsedOptions": [
17981
+ {
17982
+ "(google.api.http)": {
17983
+ "get": "/v1alpha/{site_search_engine=projects/*/locations/*/collections/*/dataStores/*/siteSearchEngine}:getUriPatternDocumentData"
17984
+ }
17985
+ }
17986
+ ]
17255
17987
  }
17256
17988
  }
17257
17989
  },
@@ -17658,6 +18390,67 @@
17658
18390
  }
17659
18391
  }
17660
18392
  },
18393
+ "SetUriPatternDocumentDataRequest": {
18394
+ "fields": {
18395
+ "siteSearchEngine": {
18396
+ "type": "string",
18397
+ "id": 1,
18398
+ "options": {
18399
+ "(google.api.field_behavior)": "REQUIRED",
18400
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/SiteSearchEngine"
18401
+ }
18402
+ },
18403
+ "documentDataMap": {
18404
+ "keyType": "string",
18405
+ "type": "google.protobuf.Struct",
18406
+ "id": 2
18407
+ },
18408
+ "emptyDocumentDataMap": {
18409
+ "type": "bool",
18410
+ "id": 4
18411
+ },
18412
+ "schema": {
18413
+ "type": "google.protobuf.Struct",
18414
+ "id": 3
18415
+ }
18416
+ }
18417
+ },
18418
+ "SetUriPatternDocumentDataResponse": {
18419
+ "fields": {}
18420
+ },
18421
+ "SetUriPatternDocumentDataMetadata": {
18422
+ "fields": {
18423
+ "createTime": {
18424
+ "type": "google.protobuf.Timestamp",
18425
+ "id": 1
18426
+ },
18427
+ "updateTime": {
18428
+ "type": "google.protobuf.Timestamp",
18429
+ "id": 2
18430
+ }
18431
+ }
18432
+ },
18433
+ "GetUriPatternDocumentDataRequest": {
18434
+ "fields": {
18435
+ "siteSearchEngine": {
18436
+ "type": "string",
18437
+ "id": 1,
18438
+ "options": {
18439
+ "(google.api.field_behavior)": "REQUIRED",
18440
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/SiteSearchEngine"
18441
+ }
18442
+ }
18443
+ }
18444
+ },
18445
+ "GetUriPatternDocumentDataResponse": {
18446
+ "fields": {
18447
+ "documentDataMap": {
18448
+ "keyType": "string",
18449
+ "type": "google.protobuf.Struct",
18450
+ "id": 1
18451
+ }
18452
+ }
18453
+ },
17661
18454
  "UserEventService": {
17662
18455
  "options": {
17663
18456
  "(google.api.default_host)": "discoveryengine.googleapis.com",
@@ -17697,15 +18490,20 @@
17697
18490
  "responseType": "google.api.HttpBody",
17698
18491
  "options": {
17699
18492
  "(google.api.http).get": "/v1alpha/{parent=projects/*/locations/*/dataStores/*}/userEvents:collect",
17700
- "(google.api.http).additional_bindings.get": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*}/userEvents:collect"
18493
+ "(google.api.http).additional_bindings.get": "/v1alpha/{parent=projects/*/locations/*}/userEvents:collect"
17701
18494
  },
17702
18495
  "parsedOptions": [
17703
18496
  {
17704
18497
  "(google.api.http)": {
17705
18498
  "get": "/v1alpha/{parent=projects/*/locations/*/dataStores/*}/userEvents:collect",
17706
- "additional_bindings": {
17707
- "get": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*}/userEvents:collect"
17708
- }
18499
+ "additional_bindings": [
18500
+ {
18501
+ "get": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*}/userEvents:collect"
18502
+ },
18503
+ {
18504
+ "get": "/v1alpha/{parent=projects/*/locations/*}/userEvents:collect"
18505
+ }
18506
+ ]
17709
18507
  }
17710
18508
  }
17711
18509
  ]
@@ -18161,6 +18959,10 @@
18161
18959
  "rule": "repeated",
18162
18960
  "type": "ChunkInfo",
18163
18961
  "id": 5
18962
+ },
18963
+ "structData": {
18964
+ "type": "google.protobuf.Struct",
18965
+ "id": 6
18164
18966
  }
18165
18967
  },
18166
18968
  "nested": {
@@ -18264,7 +19066,8 @@
18264
19066
  "ADVERSARIAL_QUERY_IGNORED": 1,
18265
19067
  "NON_ANSWER_SEEKING_QUERY_IGNORED": 2,
18266
19068
  "OUT_OF_DOMAIN_QUERY_IGNORED": 3,
18267
- "POTENTIAL_POLICY_VIOLATION": 4
19069
+ "POTENTIAL_POLICY_VIOLATION": 4,
19070
+ "NO_RELEVANT_CONTENT": 5
18268
19071
  }
18269
19072
  }
18270
19073
  }
@@ -18511,6 +19314,50 @@
18511
19314
  }
18512
19315
  }
18513
19316
  },
19317
+ "CompletionSuggestion": {
19318
+ "oneofs": {
19319
+ "rankingInfo": {
19320
+ "oneof": [
19321
+ "globalScore",
19322
+ "frequency"
19323
+ ]
19324
+ }
19325
+ },
19326
+ "fields": {
19327
+ "globalScore": {
19328
+ "type": "double",
19329
+ "id": 2
19330
+ },
19331
+ "frequency": {
19332
+ "type": "int64",
19333
+ "id": 3
19334
+ },
19335
+ "suggestion": {
19336
+ "type": "string",
19337
+ "id": 1,
19338
+ "options": {
19339
+ "(google.api.field_behavior)": "REQUIRED"
19340
+ }
19341
+ },
19342
+ "languageCode": {
19343
+ "type": "string",
19344
+ "id": 4
19345
+ },
19346
+ "groupId": {
19347
+ "type": "string",
19348
+ "id": 5
19349
+ },
19350
+ "groupScore": {
19351
+ "type": "double",
19352
+ "id": 6
19353
+ },
19354
+ "alternativePhrases": {
19355
+ "rule": "repeated",
19356
+ "type": "string",
19357
+ "id": 7
19358
+ }
19359
+ }
19360
+ },
18514
19361
  "CompletionService": {
18515
19362
  "options": {
18516
19363
  "(google.api.default_host)": "discoveryengine.googleapis.com",
@@ -18535,62 +19382,122 @@
18535
19382
  }
18536
19383
  ]
18537
19384
  },
18538
- "ImportSuggestionDenyListEntries": {
18539
- "requestType": "ImportSuggestionDenyListEntriesRequest",
19385
+ "ImportSuggestionDenyListEntries": {
19386
+ "requestType": "ImportSuggestionDenyListEntriesRequest",
19387
+ "responseType": "google.longrunning.Operation",
19388
+ "options": {
19389
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/suggestionDenyListEntries:import",
19390
+ "(google.api.http).body": "*",
19391
+ "(google.api.http).additional_bindings.post": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/suggestionDenyListEntries:import",
19392
+ "(google.api.http).additional_bindings.body": "*",
19393
+ "(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1beta.ImportSuggestionDenyListEntriesResponse",
19394
+ "(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1beta.ImportSuggestionDenyListEntriesMetadata"
19395
+ },
19396
+ "parsedOptions": [
19397
+ {
19398
+ "(google.api.http)": {
19399
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/suggestionDenyListEntries:import",
19400
+ "body": "*",
19401
+ "additional_bindings": {
19402
+ "post": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/suggestionDenyListEntries:import",
19403
+ "body": "*"
19404
+ }
19405
+ }
19406
+ },
19407
+ {
19408
+ "(google.longrunning.operation_info)": {
19409
+ "response_type": "google.cloud.discoveryengine.v1beta.ImportSuggestionDenyListEntriesResponse",
19410
+ "metadata_type": "google.cloud.discoveryengine.v1beta.ImportSuggestionDenyListEntriesMetadata"
19411
+ }
19412
+ }
19413
+ ]
19414
+ },
19415
+ "PurgeSuggestionDenyListEntries": {
19416
+ "requestType": "PurgeSuggestionDenyListEntriesRequest",
19417
+ "responseType": "google.longrunning.Operation",
19418
+ "options": {
19419
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/suggestionDenyListEntries:purge",
19420
+ "(google.api.http).body": "*",
19421
+ "(google.api.http).additional_bindings.post": "/v1beta/{parent=projects/*/locations/*/dataStores/**}/suggestionDenyListEntries:purge",
19422
+ "(google.api.http).additional_bindings.body": "*",
19423
+ "(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1beta.PurgeSuggestionDenyListEntriesResponse",
19424
+ "(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1beta.PurgeSuggestionDenyListEntriesMetadata"
19425
+ },
19426
+ "parsedOptions": [
19427
+ {
19428
+ "(google.api.http)": {
19429
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/suggestionDenyListEntries:purge",
19430
+ "body": "*",
19431
+ "additional_bindings": {
19432
+ "post": "/v1beta/{parent=projects/*/locations/*/dataStores/**}/suggestionDenyListEntries:purge",
19433
+ "body": "*"
19434
+ }
19435
+ }
19436
+ },
19437
+ {
19438
+ "(google.longrunning.operation_info)": {
19439
+ "response_type": "google.cloud.discoveryengine.v1beta.PurgeSuggestionDenyListEntriesResponse",
19440
+ "metadata_type": "google.cloud.discoveryengine.v1beta.PurgeSuggestionDenyListEntriesMetadata"
19441
+ }
19442
+ }
19443
+ ]
19444
+ },
19445
+ "ImportCompletionSuggestions": {
19446
+ "requestType": "ImportCompletionSuggestionsRequest",
18540
19447
  "responseType": "google.longrunning.Operation",
18541
19448
  "options": {
18542
- "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/suggestionDenyListEntries:import",
19449
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/completionSuggestions:import",
18543
19450
  "(google.api.http).body": "*",
18544
- "(google.api.http).additional_bindings.post": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/suggestionDenyListEntries:import",
19451
+ "(google.api.http).additional_bindings.post": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/completionSuggestions:import",
18545
19452
  "(google.api.http).additional_bindings.body": "*",
18546
- "(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1beta.ImportSuggestionDenyListEntriesResponse",
18547
- "(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1beta.ImportSuggestionDenyListEntriesMetadata"
19453
+ "(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1beta.ImportCompletionSuggestionsResponse",
19454
+ "(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1beta.ImportCompletionSuggestionsMetadata"
18548
19455
  },
18549
19456
  "parsedOptions": [
18550
19457
  {
18551
19458
  "(google.api.http)": {
18552
- "post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/suggestionDenyListEntries:import",
19459
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/completionSuggestions:import",
18553
19460
  "body": "*",
18554
19461
  "additional_bindings": {
18555
- "post": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/suggestionDenyListEntries:import",
19462
+ "post": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/completionSuggestions:import",
18556
19463
  "body": "*"
18557
19464
  }
18558
19465
  }
18559
19466
  },
18560
19467
  {
18561
19468
  "(google.longrunning.operation_info)": {
18562
- "response_type": "google.cloud.discoveryengine.v1beta.ImportSuggestionDenyListEntriesResponse",
18563
- "metadata_type": "google.cloud.discoveryengine.v1beta.ImportSuggestionDenyListEntriesMetadata"
19469
+ "response_type": "google.cloud.discoveryengine.v1beta.ImportCompletionSuggestionsResponse",
19470
+ "metadata_type": "google.cloud.discoveryengine.v1beta.ImportCompletionSuggestionsMetadata"
18564
19471
  }
18565
19472
  }
18566
19473
  ]
18567
19474
  },
18568
- "PurgeSuggestionDenyListEntries": {
18569
- "requestType": "PurgeSuggestionDenyListEntriesRequest",
19475
+ "PurgeCompletionSuggestions": {
19476
+ "requestType": "PurgeCompletionSuggestionsRequest",
18570
19477
  "responseType": "google.longrunning.Operation",
18571
19478
  "options": {
18572
- "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/suggestionDenyListEntries:purge",
19479
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/completionSuggestions:purge",
18573
19480
  "(google.api.http).body": "*",
18574
- "(google.api.http).additional_bindings.post": "/v1beta/{parent=projects/*/locations/*/dataStores/**}/suggestionDenyListEntries:purge",
19481
+ "(google.api.http).additional_bindings.post": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/completionSuggestions:purge",
18575
19482
  "(google.api.http).additional_bindings.body": "*",
18576
- "(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1beta.PurgeSuggestionDenyListEntriesResponse",
18577
- "(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1beta.PurgeSuggestionDenyListEntriesMetadata"
19483
+ "(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1beta.PurgeCompletionSuggestionsResponse",
19484
+ "(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1beta.PurgeCompletionSuggestionsMetadata"
18578
19485
  },
18579
19486
  "parsedOptions": [
18580
19487
  {
18581
19488
  "(google.api.http)": {
18582
- "post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/suggestionDenyListEntries:purge",
19489
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/completionSuggestions:purge",
18583
19490
  "body": "*",
18584
19491
  "additional_bindings": {
18585
- "post": "/v1beta/{parent=projects/*/locations/*/dataStores/**}/suggestionDenyListEntries:purge",
19492
+ "post": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/completionSuggestions:purge",
18586
19493
  "body": "*"
18587
19494
  }
18588
19495
  }
18589
19496
  },
18590
19497
  {
18591
19498
  "(google.longrunning.operation_info)": {
18592
- "response_type": "google.cloud.discoveryengine.v1beta.PurgeSuggestionDenyListEntriesResponse",
18593
- "metadata_type": "google.cloud.discoveryengine.v1beta.PurgeSuggestionDenyListEntriesMetadata"
19499
+ "response_type": "google.cloud.discoveryengine.v1beta.PurgeCompletionSuggestionsResponse",
19500
+ "metadata_type": "google.cloud.discoveryengine.v1beta.PurgeCompletionSuggestionsMetadata"
18594
19501
  }
18595
19502
  }
18596
19503
  ]
@@ -18906,6 +19813,46 @@
18906
19813
  }
18907
19814
  }
18908
19815
  },
19816
+ "AlloyDbSource": {
19817
+ "fields": {
19818
+ "projectId": {
19819
+ "type": "string",
19820
+ "id": 1
19821
+ },
19822
+ "locationId": {
19823
+ "type": "string",
19824
+ "id": 2,
19825
+ "options": {
19826
+ "(google.api.field_behavior)": "REQUIRED"
19827
+ }
19828
+ },
19829
+ "clusterId": {
19830
+ "type": "string",
19831
+ "id": 3,
19832
+ "options": {
19833
+ "(google.api.field_behavior)": "REQUIRED"
19834
+ }
19835
+ },
19836
+ "databaseId": {
19837
+ "type": "string",
19838
+ "id": 4,
19839
+ "options": {
19840
+ "(google.api.field_behavior)": "REQUIRED"
19841
+ }
19842
+ },
19843
+ "tableId": {
19844
+ "type": "string",
19845
+ "id": 5,
19846
+ "options": {
19847
+ "(google.api.field_behavior)": "REQUIRED"
19848
+ }
19849
+ },
19850
+ "gcsStagingDir": {
19851
+ "type": "string",
19852
+ "id": 6
19853
+ }
19854
+ }
19855
+ },
18909
19856
  "FirestoreSource": {
18910
19857
  "fields": {
18911
19858
  "projectId": {
@@ -19074,6 +20021,7 @@
19074
20021
  "spannerSource",
19075
20022
  "cloudSqlSource",
19076
20023
  "firestoreSource",
20024
+ "alloyDbSource",
19077
20025
  "bigtableSource"
19078
20026
  ]
19079
20027
  }
@@ -19107,6 +20055,10 @@
19107
20055
  "type": "FirestoreSource",
19108
20056
  "id": 13
19109
20057
  },
20058
+ "alloyDbSource": {
20059
+ "type": "AlloyDbSource",
20060
+ "id": 14
20061
+ },
19110
20062
  "bigtableSource": {
19111
20063
  "type": "BigtableSource",
19112
20064
  "id": 15
@@ -19246,6 +20198,90 @@
19246
20198
  }
19247
20199
  }
19248
20200
  },
20201
+ "ImportCompletionSuggestionsRequest": {
20202
+ "oneofs": {
20203
+ "source": {
20204
+ "oneof": [
20205
+ "inlineSource",
20206
+ "gcsSource",
20207
+ "bigquerySource"
20208
+ ]
20209
+ }
20210
+ },
20211
+ "fields": {
20212
+ "inlineSource": {
20213
+ "type": "InlineSource",
20214
+ "id": 2
20215
+ },
20216
+ "gcsSource": {
20217
+ "type": "GcsSource",
20218
+ "id": 3
20219
+ },
20220
+ "bigquerySource": {
20221
+ "type": "BigQuerySource",
20222
+ "id": 4
20223
+ },
20224
+ "parent": {
20225
+ "type": "string",
20226
+ "id": 1,
20227
+ "options": {
20228
+ "(google.api.field_behavior)": "REQUIRED",
20229
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/DataStore"
20230
+ }
20231
+ },
20232
+ "errorConfig": {
20233
+ "type": "ImportErrorConfig",
20234
+ "id": 5
20235
+ }
20236
+ },
20237
+ "nested": {
20238
+ "InlineSource": {
20239
+ "fields": {
20240
+ "suggestions": {
20241
+ "rule": "repeated",
20242
+ "type": "CompletionSuggestion",
20243
+ "id": 1,
20244
+ "options": {
20245
+ "(google.api.field_behavior)": "REQUIRED"
20246
+ }
20247
+ }
20248
+ }
20249
+ }
20250
+ }
20251
+ },
20252
+ "ImportCompletionSuggestionsResponse": {
20253
+ "fields": {
20254
+ "errorSamples": {
20255
+ "rule": "repeated",
20256
+ "type": "google.rpc.Status",
20257
+ "id": 1
20258
+ },
20259
+ "errorConfig": {
20260
+ "type": "ImportErrorConfig",
20261
+ "id": 2
20262
+ }
20263
+ }
20264
+ },
20265
+ "ImportCompletionSuggestionsMetadata": {
20266
+ "fields": {
20267
+ "createTime": {
20268
+ "type": "google.protobuf.Timestamp",
20269
+ "id": 1
20270
+ },
20271
+ "updateTime": {
20272
+ "type": "google.protobuf.Timestamp",
20273
+ "id": 2
20274
+ },
20275
+ "successCount": {
20276
+ "type": "int64",
20277
+ "id": 3
20278
+ },
20279
+ "failureCount": {
20280
+ "type": "int64",
20281
+ "id": 4
20282
+ }
20283
+ }
20284
+ },
19249
20285
  "ImportSampleQueriesRequest": {
19250
20286
  "oneofs": {
19251
20287
  "source": {
@@ -19836,6 +20872,57 @@
19836
20872
  }
19837
20873
  }
19838
20874
  },
20875
+ "PurgeUserEventsRequest": {
20876
+ "fields": {
20877
+ "parent": {
20878
+ "type": "string",
20879
+ "id": 1,
20880
+ "options": {
20881
+ "(google.api.field_behavior)": "REQUIRED",
20882
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/DataStore"
20883
+ }
20884
+ },
20885
+ "filter": {
20886
+ "type": "string",
20887
+ "id": 2,
20888
+ "options": {
20889
+ "(google.api.field_behavior)": "REQUIRED"
20890
+ }
20891
+ },
20892
+ "force": {
20893
+ "type": "bool",
20894
+ "id": 3
20895
+ }
20896
+ }
20897
+ },
20898
+ "PurgeUserEventsResponse": {
20899
+ "fields": {
20900
+ "purgeCount": {
20901
+ "type": "int64",
20902
+ "id": 1
20903
+ }
20904
+ }
20905
+ },
20906
+ "PurgeUserEventsMetadata": {
20907
+ "fields": {
20908
+ "createTime": {
20909
+ "type": "google.protobuf.Timestamp",
20910
+ "id": 1
20911
+ },
20912
+ "updateTime": {
20913
+ "type": "google.protobuf.Timestamp",
20914
+ "id": 2
20915
+ },
20916
+ "successCount": {
20917
+ "type": "int64",
20918
+ "id": 3
20919
+ },
20920
+ "failureCount": {
20921
+ "type": "int64",
20922
+ "id": 4
20923
+ }
20924
+ }
20925
+ },
19839
20926
  "PurgeDocumentsRequest": {
19840
20927
  "fields": {
19841
20928
  "parent": {
@@ -19936,6 +21023,43 @@
19936
21023
  }
19937
21024
  }
19938
21025
  },
21026
+ "PurgeCompletionSuggestionsRequest": {
21027
+ "fields": {
21028
+ "parent": {
21029
+ "type": "string",
21030
+ "id": 1,
21031
+ "options": {
21032
+ "(google.api.field_behavior)": "REQUIRED",
21033
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/DataStore"
21034
+ }
21035
+ }
21036
+ }
21037
+ },
21038
+ "PurgeCompletionSuggestionsResponse": {
21039
+ "fields": {
21040
+ "purgeSucceeded": {
21041
+ "type": "bool",
21042
+ "id": 1
21043
+ },
21044
+ "errorSamples": {
21045
+ "rule": "repeated",
21046
+ "type": "google.rpc.Status",
21047
+ "id": 2
21048
+ }
21049
+ }
21050
+ },
21051
+ "PurgeCompletionSuggestionsMetadata": {
21052
+ "fields": {
21053
+ "createTime": {
21054
+ "type": "google.protobuf.Timestamp",
21055
+ "id": 1
21056
+ },
21057
+ "updateTime": {
21058
+ "type": "google.protobuf.Timestamp",
21059
+ "id": 2
21060
+ }
21061
+ }
21062
+ },
19939
21063
  "Condition": {
19940
21064
  "fields": {
19941
21065
  "queryTerms": {
@@ -20624,9 +21748,17 @@
20624
21748
  "type": "string",
20625
21749
  "id": 8
20626
21750
  },
20627
- "userInfo": {
20628
- "type": "UserInfo",
20629
- "id": 21
21751
+ "userInfo": {
21752
+ "type": "UserInfo",
21753
+ "id": 21
21754
+ },
21755
+ "languageCode": {
21756
+ "type": "string",
21757
+ "id": 35
21758
+ },
21759
+ "regionCode": {
21760
+ "type": "string",
21761
+ "id": 36
20630
21762
  },
20631
21763
  "facetSpecs": {
20632
21764
  "rule": "repeated",
@@ -20674,6 +21806,25 @@
20674
21806
  "keyType": "string",
20675
21807
  "type": "string",
20676
21808
  "id": 22
21809
+ },
21810
+ "naturalLanguageQueryUnderstandingSpec": {
21811
+ "type": "NaturalLanguageQueryUnderstandingSpec",
21812
+ "id": 28
21813
+ },
21814
+ "searchAsYouTypeSpec": {
21815
+ "type": "SearchAsYouTypeSpec",
21816
+ "id": 31
21817
+ },
21818
+ "session": {
21819
+ "type": "string",
21820
+ "id": 41,
21821
+ "options": {
21822
+ "(google.api.resource_reference).type": "discoveryengine.googleapis.com/Session"
21823
+ }
21824
+ },
21825
+ "sessionSpec": {
21826
+ "type": "SessionSpec",
21827
+ "id": 42
20677
21828
  }
20678
21829
  },
20679
21830
  "nested": {
@@ -21052,6 +22203,67 @@
21052
22203
  }
21053
22204
  }
21054
22205
  }
22206
+ },
22207
+ "NaturalLanguageQueryUnderstandingSpec": {
22208
+ "fields": {
22209
+ "filterExtractionCondition": {
22210
+ "type": "FilterExtractionCondition",
22211
+ "id": 1
22212
+ },
22213
+ "geoSearchQueryDetectionFieldNames": {
22214
+ "rule": "repeated",
22215
+ "type": "string",
22216
+ "id": 2
22217
+ }
22218
+ },
22219
+ "nested": {
22220
+ "FilterExtractionCondition": {
22221
+ "values": {
22222
+ "CONDITION_UNSPECIFIED": 0,
22223
+ "DISABLED": 1,
22224
+ "ENABLED": 2
22225
+ }
22226
+ }
22227
+ }
22228
+ },
22229
+ "SearchAsYouTypeSpec": {
22230
+ "fields": {
22231
+ "condition": {
22232
+ "type": "Condition",
22233
+ "id": 1
22234
+ }
22235
+ },
22236
+ "nested": {
22237
+ "Condition": {
22238
+ "values": {
22239
+ "CONDITION_UNSPECIFIED": 0,
22240
+ "DISABLED": 1,
22241
+ "ENABLED": 2
22242
+ }
22243
+ }
22244
+ }
22245
+ },
22246
+ "SessionSpec": {
22247
+ "oneofs": {
22248
+ "_searchResultPersistenceCount": {
22249
+ "oneof": [
22250
+ "searchResultPersistenceCount"
22251
+ ]
22252
+ }
22253
+ },
22254
+ "fields": {
22255
+ "queryId": {
22256
+ "type": "string",
22257
+ "id": 1
22258
+ },
22259
+ "searchResultPersistenceCount": {
22260
+ "type": "int32",
22261
+ "id": 2,
22262
+ "options": {
22263
+ "proto3_optional": true
22264
+ }
22265
+ }
22266
+ }
21055
22267
  }
21056
22268
  }
21057
22269
  },
@@ -21108,6 +22320,14 @@
21108
22320
  "queryExpansionInfo": {
21109
22321
  "type": "QueryExpansionInfo",
21110
22322
  "id": 14
22323
+ },
22324
+ "naturalLanguageQueryUnderstandingInfo": {
22325
+ "type": "NaturalLanguageQueryUnderstandingInfo",
22326
+ "id": 15
22327
+ },
22328
+ "sessionInfo": {
22329
+ "type": "SessionInfo",
22330
+ "id": 19
21111
22331
  }
21112
22332
  },
21113
22333
  "nested": {
@@ -21335,7 +22555,8 @@
21335
22555
  "NON_SUMMARY_SEEKING_QUERY_IGNORED": 2,
21336
22556
  "OUT_OF_DOMAIN_QUERY_IGNORED": 3,
21337
22557
  "POTENTIAL_POLICY_VIOLATION": 4,
21338
- "LLM_ADDON_NOT_ENABLED": 5
22558
+ "LLM_ADDON_NOT_ENABLED": 5,
22559
+ "NO_RELEVANT_CONTENT": 6
21339
22560
  }
21340
22561
  }
21341
22562
  }
@@ -21363,6 +22584,156 @@
21363
22584
  "id": 2
21364
22585
  }
21365
22586
  }
22587
+ },
22588
+ "NaturalLanguageQueryUnderstandingInfo": {
22589
+ "fields": {
22590
+ "extractedFilters": {
22591
+ "type": "string",
22592
+ "id": 1
22593
+ },
22594
+ "rewrittenQuery": {
22595
+ "type": "string",
22596
+ "id": 2
22597
+ },
22598
+ "structuredExtractedFilter": {
22599
+ "type": "StructuredExtractedFilter",
22600
+ "id": 3
22601
+ }
22602
+ },
22603
+ "nested": {
22604
+ "StructuredExtractedFilter": {
22605
+ "fields": {
22606
+ "expression": {
22607
+ "type": "Expression",
22608
+ "id": 1
22609
+ }
22610
+ },
22611
+ "nested": {
22612
+ "StringConstraint": {
22613
+ "fields": {
22614
+ "fieldName": {
22615
+ "type": "string",
22616
+ "id": 1
22617
+ },
22618
+ "values": {
22619
+ "rule": "repeated",
22620
+ "type": "string",
22621
+ "id": 2
22622
+ }
22623
+ }
22624
+ },
22625
+ "NumberConstraint": {
22626
+ "fields": {
22627
+ "fieldName": {
22628
+ "type": "string",
22629
+ "id": 1
22630
+ },
22631
+ "comparison": {
22632
+ "type": "Comparison",
22633
+ "id": 2
22634
+ },
22635
+ "value": {
22636
+ "type": "double",
22637
+ "id": 3
22638
+ }
22639
+ },
22640
+ "nested": {
22641
+ "Comparison": {
22642
+ "values": {
22643
+ "COMPARISON_UNSPECIFIED": 0,
22644
+ "EQUALS": 1,
22645
+ "LESS_THAN_EQUALS": 2,
22646
+ "LESS_THAN": 3,
22647
+ "GREATER_THAN_EQUALS": 4,
22648
+ "GREATER_THAN": 5
22649
+ }
22650
+ }
22651
+ }
22652
+ },
22653
+ "GeolocationConstraint": {
22654
+ "fields": {
22655
+ "fieldName": {
22656
+ "type": "string",
22657
+ "id": 1
22658
+ },
22659
+ "address": {
22660
+ "type": "string",
22661
+ "id": 2
22662
+ },
22663
+ "radiusInMeters": {
22664
+ "type": "float",
22665
+ "id": 3
22666
+ }
22667
+ }
22668
+ },
22669
+ "AndExpression": {
22670
+ "fields": {
22671
+ "expressions": {
22672
+ "rule": "repeated",
22673
+ "type": "Expression",
22674
+ "id": 1
22675
+ }
22676
+ }
22677
+ },
22678
+ "OrExpression": {
22679
+ "fields": {
22680
+ "expressions": {
22681
+ "rule": "repeated",
22682
+ "type": "Expression",
22683
+ "id": 1
22684
+ }
22685
+ }
22686
+ },
22687
+ "Expression": {
22688
+ "oneofs": {
22689
+ "expr": {
22690
+ "oneof": [
22691
+ "stringConstraint",
22692
+ "numberConstraint",
22693
+ "geolocationConstraint",
22694
+ "andExpr",
22695
+ "orExpr"
22696
+ ]
22697
+ }
22698
+ },
22699
+ "fields": {
22700
+ "stringConstraint": {
22701
+ "type": "StringConstraint",
22702
+ "id": 1
22703
+ },
22704
+ "numberConstraint": {
22705
+ "type": "NumberConstraint",
22706
+ "id": 2
22707
+ },
22708
+ "geolocationConstraint": {
22709
+ "type": "GeolocationConstraint",
22710
+ "id": 3
22711
+ },
22712
+ "andExpr": {
22713
+ "type": "AndExpression",
22714
+ "id": 4
22715
+ },
22716
+ "orExpr": {
22717
+ "type": "OrExpression",
22718
+ "id": 5
22719
+ }
22720
+ }
22721
+ }
22722
+ }
22723
+ }
22724
+ }
22725
+ },
22726
+ "SessionInfo": {
22727
+ "fields": {
22728
+ "name": {
22729
+ "type": "string",
22730
+ "id": 1
22731
+ },
22732
+ "queryId": {
22733
+ "type": "string",
22734
+ "id": 2
22735
+ }
22736
+ }
21366
22737
  }
21367
22738
  }
21368
22739
  },
@@ -21974,6 +23345,11 @@
21974
23345
  "userPseudoId": {
21975
23346
  "type": "string",
21976
23347
  "id": 12
23348
+ },
23349
+ "userLabels": {
23350
+ "keyType": "string",
23351
+ "type": "string",
23352
+ "id": 13
21977
23353
  }
21978
23354
  },
21979
23355
  "nested": {
@@ -22509,11 +23885,19 @@
22509
23885
  },
22510
23886
  "createTime": {
22511
23887
  "type": "google.protobuf.Timestamp",
22512
- "id": 5
23888
+ "id": 5,
23889
+ "options": {
23890
+ "deprecated": true
23891
+ }
22513
23892
  },
22514
23893
  "trainingStartTime": {
22515
23894
  "type": "google.protobuf.Timestamp",
22516
23895
  "id": 6
23896
+ },
23897
+ "metrics": {
23898
+ "keyType": "string",
23899
+ "type": "double",
23900
+ "id": 7
22517
23901
  }
22518
23902
  },
22519
23903
  "nested": {
@@ -22524,7 +23908,8 @@
22524
23908
  "TRAINING": 2,
22525
23909
  "TRAINING_COMPLETE": 3,
22526
23910
  "READY_FOR_SERVING": 4,
22527
- "TRAINING_FAILED": 5
23911
+ "TRAINING_FAILED": 5,
23912
+ "NO_IMPROVEMENT": 6
22528
23913
  }
22529
23914
  }
22530
23915
  }
@@ -22582,6 +23967,10 @@
22582
23967
  "(google.api.field_behavior)": "OUTPUT_ONLY"
22583
23968
  }
22584
23969
  },
23970
+ "languageInfo": {
23971
+ "type": "LanguageInfo",
23972
+ "id": 14
23973
+ },
22585
23974
  "documentProcessingConfig": {
22586
23975
  "type": "DocumentProcessingConfig",
22587
23976
  "id": 27
@@ -22602,6 +23991,35 @@
22602
23991
  }
22603
23992
  }
22604
23993
  },
23994
+ "LanguageInfo": {
23995
+ "fields": {
23996
+ "languageCode": {
23997
+ "type": "string",
23998
+ "id": 1
23999
+ },
24000
+ "normalizedLanguageCode": {
24001
+ "type": "string",
24002
+ "id": 2,
24003
+ "options": {
24004
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
24005
+ }
24006
+ },
24007
+ "language": {
24008
+ "type": "string",
24009
+ "id": 3,
24010
+ "options": {
24011
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
24012
+ }
24013
+ },
24014
+ "region": {
24015
+ "type": "string",
24016
+ "id": 4,
24017
+ "options": {
24018
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
24019
+ }
24020
+ }
24021
+ }
24022
+ },
22605
24023
  "DocumentProcessingConfig": {
22606
24024
  "options": {
22607
24025
  "(google.api.resource).type": "discoveryengine.googleapis.com/DocumentProcessingConfig",
@@ -22907,6 +24325,10 @@
22907
24325
  "createAdvancedSiteSearch": {
22908
24326
  "type": "bool",
22909
24327
  "id": 4
24328
+ },
24329
+ "skipDefaultSchemaCreation": {
24330
+ "type": "bool",
24331
+ "id": 7
22910
24332
  }
22911
24333
  }
22912
24334
  },
@@ -26866,16 +28288,51 @@
26866
28288
  "responseType": "google.api.HttpBody",
26867
28289
  "options": {
26868
28290
  "(google.api.http).get": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/userEvents:collect",
26869
- "(google.api.http).additional_bindings.get": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/userEvents:collect"
28291
+ "(google.api.http).additional_bindings.get": "/v1beta/{parent=projects/*/locations/*}/userEvents:collect"
26870
28292
  },
26871
28293
  "parsedOptions": [
26872
28294
  {
26873
28295
  "(google.api.http)": {
26874
28296
  "get": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/userEvents:collect",
28297
+ "additional_bindings": [
28298
+ {
28299
+ "get": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/userEvents:collect"
28300
+ },
28301
+ {
28302
+ "get": "/v1beta/{parent=projects/*/locations/*}/userEvents:collect"
28303
+ }
28304
+ ]
28305
+ }
28306
+ }
28307
+ ]
28308
+ },
28309
+ "PurgeUserEvents": {
28310
+ "requestType": "PurgeUserEventsRequest",
28311
+ "responseType": "google.longrunning.Operation",
28312
+ "options": {
28313
+ "(google.api.http).post": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/userEvents:purge",
28314
+ "(google.api.http).body": "*",
28315
+ "(google.api.http).additional_bindings.post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/userEvents:purge",
28316
+ "(google.api.http).additional_bindings.body": "*",
28317
+ "(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1beta.PurgeUserEventsResponse",
28318
+ "(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1beta.PurgeUserEventsMetadata"
28319
+ },
28320
+ "parsedOptions": [
28321
+ {
28322
+ "(google.api.http)": {
28323
+ "post": "/v1beta/{parent=projects/*/locations/*/dataStores/*}/userEvents:purge",
28324
+ "body": "*",
26875
28325
  "additional_bindings": {
26876
- "get": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/userEvents:collect"
28326
+ "post": "/v1beta/{parent=projects/*/locations/*/collections/*/dataStores/*}/userEvents:purge",
28327
+ "body": "*"
26877
28328
  }
26878
28329
  }
28330
+ },
28331
+ {
28332
+ "(google.longrunning.operation_info)": {
28333
+ "response_type": "google.cloud.discoveryengine.v1beta.PurgeUserEventsResponse",
28334
+ "metadata_type": "google.cloud.discoveryengine.v1beta.PurgeUserEventsMetadata"
28335
+ }
26879
28336
  }
26880
28337
  ]
26881
28338
  },