@google-cloud/discoveryengine 1.2.0 → 1.3.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.
- package/CHANGELOG.md +7 -0
- package/README.md +13 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +39 -4
- package/build/protos/google/cloud/discoveryengine/v1alpha/data_store.proto +98 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +307 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +370 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +336 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +9 -3
- package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +26 -3
- package/build/protos/protos.d.ts +5578 -1800
- package/build/protos/protos.js +14034 -5272
- package/build/protos/protos.json +1337 -340
- package/build/src/v1alpha/completion_service_client.d.ts +42 -0
- package/build/src/v1alpha/completion_service_client.js +58 -0
- package/build/src/v1alpha/conversational_search_service_client.d.ts +42 -0
- package/build/src/v1alpha/conversational_search_service_client.js +58 -0
- package/build/src/v1alpha/data_store_service_client.d.ts +1060 -0
- package/build/src/v1alpha/data_store_service_client.js +1431 -0
- package/build/src/v1alpha/data_store_service_client_config.json +46 -0
- package/build/src/v1alpha/document_service_client.d.ts +117 -0
- package/build/src/v1alpha/document_service_client.js +162 -0
- package/build/src/v1alpha/engine_service_client.d.ts +1079 -0
- package/build/src/v1alpha/engine_service_client.js +1481 -0
- package/build/src/v1alpha/engine_service_client_config.json +58 -0
- package/build/src/v1alpha/index.d.ts +2 -0
- package/build/src/v1alpha/index.js +5 -1
- package/build/src/v1alpha/recommendation_service_client.d.ts +126 -3
- package/build/src/v1alpha/recommendation_service_client.js +162 -0
- package/build/src/v1alpha/schema_service_client.d.ts +42 -0
- package/build/src/v1alpha/schema_service_client.js +58 -0
- package/build/src/v1alpha/search_service_client.d.ts +195 -9
- package/build/src/v1alpha/search_service_client.js +214 -6
- package/build/src/v1alpha/site_search_engine_service_client.d.ts +117 -0
- package/build/src/v1alpha/site_search_engine_service_client.js +162 -0
- package/build/src/v1alpha/user_event_service_client.d.ts +42 -0
- package/build/src/v1alpha/user_event_service_client.js +58 -0
- package/package.json +3 -3
package/build/protos/protos.json
CHANGED
@@ -2543,6 +2543,13 @@
|
|
2543
2543
|
"(google.api.resource_definition).pattern": "projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine"
|
2544
2544
|
},
|
2545
2545
|
"nested": {
|
2546
|
+
"IndustryVertical": {
|
2547
|
+
"values": {
|
2548
|
+
"INDUSTRY_VERTICAL_UNSPECIFIED": 0,
|
2549
|
+
"GENERIC": 1,
|
2550
|
+
"MEDIA": 2
|
2551
|
+
}
|
2552
|
+
},
|
2546
2553
|
"SolutionType": {
|
2547
2554
|
"values": {
|
2548
2555
|
"SOLUTION_TYPE_UNSPECIFIED": 0,
|
@@ -2551,6 +2558,19 @@
|
|
2551
2558
|
"SOLUTION_TYPE_CHAT": 3
|
2552
2559
|
}
|
2553
2560
|
},
|
2561
|
+
"SearchTier": {
|
2562
|
+
"values": {
|
2563
|
+
"SEARCH_TIER_UNSPECIFIED": 0,
|
2564
|
+
"SEARCH_TIER_STANDARD": 1,
|
2565
|
+
"SEARCH_TIER_ENTERPRISE": 2
|
2566
|
+
}
|
2567
|
+
},
|
2568
|
+
"SearchAddOn": {
|
2569
|
+
"values": {
|
2570
|
+
"SEARCH_ADD_ON_UNSPECIFIED": 0,
|
2571
|
+
"SEARCH_ADD_ON_LLM": 1
|
2572
|
+
}
|
2573
|
+
},
|
2554
2574
|
"Interval": {
|
2555
2575
|
"oneofs": {
|
2556
2576
|
"min": {
|
@@ -3857,208 +3877,275 @@
|
|
3857
3877
|
}
|
3858
3878
|
}
|
3859
3879
|
},
|
3860
|
-
"
|
3880
|
+
"DataStore": {
|
3881
|
+
"options": {
|
3882
|
+
"(google.api.resource).type": "discoveryengine.googleapis.com/DataStore",
|
3883
|
+
"(google.api.resource).pattern": "projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}"
|
3884
|
+
},
|
3885
|
+
"fields": {
|
3886
|
+
"name": {
|
3887
|
+
"type": "string",
|
3888
|
+
"id": 1,
|
3889
|
+
"options": {
|
3890
|
+
"(google.api.field_behavior)": "IMMUTABLE"
|
3891
|
+
}
|
3892
|
+
},
|
3893
|
+
"displayName": {
|
3894
|
+
"type": "string",
|
3895
|
+
"id": 2,
|
3896
|
+
"options": {
|
3897
|
+
"(google.api.field_behavior)": "REQUIRED"
|
3898
|
+
}
|
3899
|
+
},
|
3900
|
+
"industryVertical": {
|
3901
|
+
"type": "IndustryVertical",
|
3902
|
+
"id": 3,
|
3903
|
+
"options": {
|
3904
|
+
"(google.api.field_behavior)": "IMMUTABLE"
|
3905
|
+
}
|
3906
|
+
},
|
3907
|
+
"solutionTypes": {
|
3908
|
+
"rule": "repeated",
|
3909
|
+
"type": "SolutionType",
|
3910
|
+
"id": 5
|
3911
|
+
},
|
3912
|
+
"defaultSchemaId": {
|
3913
|
+
"type": "string",
|
3914
|
+
"id": 7,
|
3915
|
+
"options": {
|
3916
|
+
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
3917
|
+
}
|
3918
|
+
},
|
3919
|
+
"contentConfig": {
|
3920
|
+
"type": "ContentConfig",
|
3921
|
+
"id": 6,
|
3922
|
+
"options": {
|
3923
|
+
"(google.api.field_behavior)": "IMMUTABLE"
|
3924
|
+
}
|
3925
|
+
},
|
3926
|
+
"createTime": {
|
3927
|
+
"type": "google.protobuf.Timestamp",
|
3928
|
+
"id": 4,
|
3929
|
+
"options": {
|
3930
|
+
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
3931
|
+
}
|
3932
|
+
}
|
3933
|
+
},
|
3934
|
+
"nested": {
|
3935
|
+
"ContentConfig": {
|
3936
|
+
"values": {
|
3937
|
+
"CONTENT_CONFIG_UNSPECIFIED": 0,
|
3938
|
+
"NO_CONTENT": 1,
|
3939
|
+
"CONTENT_REQUIRED": 2,
|
3940
|
+
"PUBLIC_WEBSITE": 3
|
3941
|
+
}
|
3942
|
+
}
|
3943
|
+
}
|
3944
|
+
},
|
3945
|
+
"DataStoreService": {
|
3861
3946
|
"options": {
|
3862
3947
|
"(google.api.default_host)": "discoveryengine.googleapis.com",
|
3863
3948
|
"(google.api.oauth_scopes)": "https://www.googleapis.com/auth/cloud-platform"
|
3864
3949
|
},
|
3865
3950
|
"methods": {
|
3866
|
-
"
|
3867
|
-
"requestType": "
|
3868
|
-
"responseType": "
|
3951
|
+
"CreateDataStore": {
|
3952
|
+
"requestType": "CreateDataStoreRequest",
|
3953
|
+
"responseType": "google.longrunning.Operation",
|
3869
3954
|
"options": {
|
3870
|
-
"(google.api.http).
|
3871
|
-
"(google.api.http).
|
3872
|
-
"(google.api.
|
3955
|
+
"(google.api.http).post": "/v1alpha/{parent=projects/*/locations/*}/dataStores",
|
3956
|
+
"(google.api.http).body": "data_store",
|
3957
|
+
"(google.api.http).additional_bindings.post": "/v1alpha/{parent=projects/*/locations/*/collections/*}/dataStores",
|
3958
|
+
"(google.api.http).additional_bindings.body": "data_store",
|
3959
|
+
"(google.api.method_signature)": "parent,data_store,data_store_id",
|
3960
|
+
"(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1alpha.DataStore",
|
3961
|
+
"(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.CreateDataStoreMetadata"
|
3873
3962
|
},
|
3874
3963
|
"parsedOptions": [
|
3875
3964
|
{
|
3876
3965
|
"(google.api.http)": {
|
3877
|
-
"
|
3966
|
+
"post": "/v1alpha/{parent=projects/*/locations/*}/dataStores",
|
3967
|
+
"body": "data_store",
|
3878
3968
|
"additional_bindings": {
|
3879
|
-
"
|
3969
|
+
"post": "/v1alpha/{parent=projects/*/locations/*/collections/*}/dataStores",
|
3970
|
+
"body": "data_store"
|
3880
3971
|
}
|
3881
3972
|
}
|
3882
3973
|
},
|
3883
3974
|
{
|
3884
|
-
"(google.api.method_signature)": "
|
3885
|
-
}
|
3886
|
-
]
|
3887
|
-
},
|
3888
|
-
"ListDocuments": {
|
3889
|
-
"requestType": "ListDocumentsRequest",
|
3890
|
-
"responseType": "ListDocumentsResponse",
|
3891
|
-
"options": {
|
3892
|
-
"(google.api.http).get": "/v1alpha/{parent=projects/*/locations/*/dataStores/*/branches/*}/documents",
|
3893
|
-
"(google.api.http).additional_bindings.get": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*/branches/*}/documents",
|
3894
|
-
"(google.api.method_signature)": "parent"
|
3895
|
-
},
|
3896
|
-
"parsedOptions": [
|
3897
|
-
{
|
3898
|
-
"(google.api.http)": {
|
3899
|
-
"get": "/v1alpha/{parent=projects/*/locations/*/dataStores/*/branches/*}/documents",
|
3900
|
-
"additional_bindings": {
|
3901
|
-
"get": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*/branches/*}/documents"
|
3902
|
-
}
|
3903
|
-
}
|
3975
|
+
"(google.api.method_signature)": "parent,data_store,data_store_id"
|
3904
3976
|
},
|
3905
3977
|
{
|
3906
|
-
"(google.
|
3978
|
+
"(google.longrunning.operation_info)": {
|
3979
|
+
"response_type": "google.cloud.discoveryengine.v1alpha.DataStore",
|
3980
|
+
"metadata_type": "google.cloud.discoveryengine.v1alpha.CreateDataStoreMetadata"
|
3981
|
+
}
|
3907
3982
|
}
|
3908
3983
|
]
|
3909
3984
|
},
|
3910
|
-
"
|
3911
|
-
"requestType": "
|
3912
|
-
"responseType": "
|
3985
|
+
"GetDataStore": {
|
3986
|
+
"requestType": "GetDataStoreRequest",
|
3987
|
+
"responseType": "DataStore",
|
3913
3988
|
"options": {
|
3914
|
-
"(google.api.http).
|
3915
|
-
"(google.api.http).
|
3916
|
-
"(google.api.
|
3917
|
-
"(google.api.http).additional_bindings.body": "document",
|
3918
|
-
"(google.api.method_signature)": "parent,document,document_id"
|
3989
|
+
"(google.api.http).get": "/v1alpha/{name=projects/*/locations/*/dataStores/*}",
|
3990
|
+
"(google.api.http).additional_bindings.get": "/v1alpha/{name=projects/*/locations/*/collections/*/dataStores/*}",
|
3991
|
+
"(google.api.method_signature)": "name"
|
3919
3992
|
},
|
3920
3993
|
"parsedOptions": [
|
3921
3994
|
{
|
3922
3995
|
"(google.api.http)": {
|
3923
|
-
"
|
3924
|
-
"body": "document",
|
3996
|
+
"get": "/v1alpha/{name=projects/*/locations/*/dataStores/*}",
|
3925
3997
|
"additional_bindings": {
|
3926
|
-
"
|
3927
|
-
"body": "document"
|
3998
|
+
"get": "/v1alpha/{name=projects/*/locations/*/collections/*/dataStores/*}"
|
3928
3999
|
}
|
3929
4000
|
}
|
3930
4001
|
},
|
3931
4002
|
{
|
3932
|
-
"(google.api.method_signature)": "
|
3933
|
-
}
|
3934
|
-
]
|
3935
|
-
},
|
3936
|
-
"UpdateDocument": {
|
3937
|
-
"requestType": "UpdateDocumentRequest",
|
3938
|
-
"responseType": "Document",
|
3939
|
-
"options": {
|
3940
|
-
"(google.api.http).patch": "/v1alpha/{document.name=projects/*/locations/*/dataStores/*/branches/*/documents/*}",
|
3941
|
-
"(google.api.http).body": "document",
|
3942
|
-
"(google.api.http).additional_bindings.patch": "/v1alpha/{document.name=projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*}",
|
3943
|
-
"(google.api.http).additional_bindings.body": "document"
|
3944
|
-
},
|
3945
|
-
"parsedOptions": [
|
3946
|
-
{
|
3947
|
-
"(google.api.http)": {
|
3948
|
-
"patch": "/v1alpha/{document.name=projects/*/locations/*/dataStores/*/branches/*/documents/*}",
|
3949
|
-
"body": "document",
|
3950
|
-
"additional_bindings": {
|
3951
|
-
"patch": "/v1alpha/{document.name=projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*}",
|
3952
|
-
"body": "document"
|
3953
|
-
}
|
3954
|
-
}
|
4003
|
+
"(google.api.method_signature)": "name"
|
3955
4004
|
}
|
3956
4005
|
]
|
3957
4006
|
},
|
3958
|
-
"
|
3959
|
-
"requestType": "
|
3960
|
-
"responseType": "
|
4007
|
+
"ListDataStores": {
|
4008
|
+
"requestType": "ListDataStoresRequest",
|
4009
|
+
"responseType": "ListDataStoresResponse",
|
3961
4010
|
"options": {
|
3962
|
-
"(google.api.http).
|
3963
|
-
"(google.api.http).additional_bindings.
|
3964
|
-
"(google.api.method_signature)": "
|
4011
|
+
"(google.api.http).get": "/v1alpha/{parent=projects/*/locations/*}/dataStores",
|
4012
|
+
"(google.api.http).additional_bindings.get": "/v1alpha/{parent=projects/*/locations/*/collections/*}/dataStores",
|
4013
|
+
"(google.api.method_signature)": "parent"
|
3965
4014
|
},
|
3966
4015
|
"parsedOptions": [
|
3967
4016
|
{
|
3968
4017
|
"(google.api.http)": {
|
3969
|
-
"
|
4018
|
+
"get": "/v1alpha/{parent=projects/*/locations/*}/dataStores",
|
3970
4019
|
"additional_bindings": {
|
3971
|
-
"
|
4020
|
+
"get": "/v1alpha/{parent=projects/*/locations/*/collections/*}/dataStores"
|
3972
4021
|
}
|
3973
4022
|
}
|
3974
4023
|
},
|
3975
4024
|
{
|
3976
|
-
"(google.api.method_signature)": "
|
4025
|
+
"(google.api.method_signature)": "parent"
|
3977
4026
|
}
|
3978
4027
|
]
|
3979
4028
|
},
|
3980
|
-
"
|
3981
|
-
"requestType": "
|
4029
|
+
"DeleteDataStore": {
|
4030
|
+
"requestType": "DeleteDataStoreRequest",
|
3982
4031
|
"responseType": "google.longrunning.Operation",
|
3983
4032
|
"options": {
|
3984
|
-
"(google.api.http).
|
3985
|
-
"(google.api.http).
|
3986
|
-
"(google.api.
|
3987
|
-
"(google.
|
3988
|
-
"(google.longrunning.operation_info).
|
3989
|
-
"(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.ImportDocumentsMetadata"
|
4033
|
+
"(google.api.http).delete": "/v1alpha/{name=projects/*/locations/*/dataStores/*}",
|
4034
|
+
"(google.api.http).additional_bindings.delete": "/v1alpha/{name=projects/*/locations/*/collections/*/dataStores/*}",
|
4035
|
+
"(google.api.method_signature)": "name",
|
4036
|
+
"(google.longrunning.operation_info).response_type": "google.protobuf.Empty",
|
4037
|
+
"(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.DeleteDataStoreMetadata"
|
3990
4038
|
},
|
3991
4039
|
"parsedOptions": [
|
3992
4040
|
{
|
3993
4041
|
"(google.api.http)": {
|
3994
|
-
"
|
3995
|
-
"body": "*",
|
4042
|
+
"delete": "/v1alpha/{name=projects/*/locations/*/dataStores/*}",
|
3996
4043
|
"additional_bindings": {
|
3997
|
-
"
|
3998
|
-
"body": "*"
|
4044
|
+
"delete": "/v1alpha/{name=projects/*/locations/*/collections/*/dataStores/*}"
|
3999
4045
|
}
|
4000
4046
|
}
|
4001
4047
|
},
|
4048
|
+
{
|
4049
|
+
"(google.api.method_signature)": "name"
|
4050
|
+
},
|
4002
4051
|
{
|
4003
4052
|
"(google.longrunning.operation_info)": {
|
4004
|
-
"response_type": "google.
|
4005
|
-
"metadata_type": "google.cloud.discoveryengine.v1alpha.
|
4053
|
+
"response_type": "google.protobuf.Empty",
|
4054
|
+
"metadata_type": "google.cloud.discoveryengine.v1alpha.DeleteDataStoreMetadata"
|
4006
4055
|
}
|
4007
4056
|
}
|
4008
4057
|
]
|
4009
4058
|
},
|
4010
|
-
"
|
4011
|
-
"requestType": "
|
4012
|
-
"responseType": "
|
4059
|
+
"UpdateDataStore": {
|
4060
|
+
"requestType": "UpdateDataStoreRequest",
|
4061
|
+
"responseType": "DataStore",
|
4013
4062
|
"options": {
|
4014
|
-
"(google.api.http).
|
4015
|
-
"(google.api.http).body": "
|
4016
|
-
"(google.api.http).additional_bindings.
|
4017
|
-
"(google.api.http).additional_bindings.body": "
|
4018
|
-
"(google.
|
4019
|
-
"(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.PurgeDocumentsMetadata"
|
4063
|
+
"(google.api.http).patch": "/v1alpha/{data_store.name=projects/*/locations/*/dataStores/*}",
|
4064
|
+
"(google.api.http).body": "data_store",
|
4065
|
+
"(google.api.http).additional_bindings.patch": "/v1alpha/{data_store.name=projects/*/locations/*/collections/*/dataStores/*}",
|
4066
|
+
"(google.api.http).additional_bindings.body": "data_store",
|
4067
|
+
"(google.api.method_signature)": "data_store,update_mask"
|
4020
4068
|
},
|
4021
4069
|
"parsedOptions": [
|
4022
4070
|
{
|
4023
4071
|
"(google.api.http)": {
|
4024
|
-
"
|
4025
|
-
"body": "
|
4072
|
+
"patch": "/v1alpha/{data_store.name=projects/*/locations/*/dataStores/*}",
|
4073
|
+
"body": "data_store",
|
4026
4074
|
"additional_bindings": {
|
4027
|
-
"
|
4028
|
-
"body": "
|
4075
|
+
"patch": "/v1alpha/{data_store.name=projects/*/locations/*/collections/*/dataStores/*}",
|
4076
|
+
"body": "data_store"
|
4029
4077
|
}
|
4030
4078
|
}
|
4031
4079
|
},
|
4032
4080
|
{
|
4033
|
-
"(google.
|
4034
|
-
"response_type": "google.cloud.discoveryengine.v1alpha.PurgeDocumentsResponse",
|
4035
|
-
"metadata_type": "google.cloud.discoveryengine.v1alpha.PurgeDocumentsMetadata"
|
4036
|
-
}
|
4081
|
+
"(google.api.method_signature)": "data_store,update_mask"
|
4037
4082
|
}
|
4038
4083
|
]
|
4039
4084
|
}
|
4040
4085
|
}
|
4041
4086
|
},
|
4042
|
-
"
|
4087
|
+
"CreateDataStoreRequest": {
|
4088
|
+
"fields": {
|
4089
|
+
"parent": {
|
4090
|
+
"type": "string",
|
4091
|
+
"id": 1,
|
4092
|
+
"options": {
|
4093
|
+
"(google.api.field_behavior)": "REQUIRED",
|
4094
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Collection"
|
4095
|
+
}
|
4096
|
+
},
|
4097
|
+
"dataStore": {
|
4098
|
+
"type": "DataStore",
|
4099
|
+
"id": 2,
|
4100
|
+
"options": {
|
4101
|
+
"(google.api.field_behavior)": "REQUIRED"
|
4102
|
+
}
|
4103
|
+
},
|
4104
|
+
"dataStoreId": {
|
4105
|
+
"type": "string",
|
4106
|
+
"id": 3,
|
4107
|
+
"options": {
|
4108
|
+
"(google.api.field_behavior)": "REQUIRED"
|
4109
|
+
}
|
4110
|
+
},
|
4111
|
+
"createAdvancedSiteSearch": {
|
4112
|
+
"type": "bool",
|
4113
|
+
"id": 4
|
4114
|
+
}
|
4115
|
+
}
|
4116
|
+
},
|
4117
|
+
"GetDataStoreRequest": {
|
4043
4118
|
"fields": {
|
4044
4119
|
"name": {
|
4045
4120
|
"type": "string",
|
4046
4121
|
"id": 1,
|
4047
4122
|
"options": {
|
4048
4123
|
"(google.api.field_behavior)": "REQUIRED",
|
4049
|
-
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/
|
4124
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/DataStore"
|
4050
4125
|
}
|
4051
4126
|
}
|
4052
4127
|
}
|
4053
4128
|
},
|
4054
|
-
"
|
4129
|
+
"CreateDataStoreMetadata": {
|
4130
|
+
"fields": {
|
4131
|
+
"createTime": {
|
4132
|
+
"type": "google.protobuf.Timestamp",
|
4133
|
+
"id": 1
|
4134
|
+
},
|
4135
|
+
"updateTime": {
|
4136
|
+
"type": "google.protobuf.Timestamp",
|
4137
|
+
"id": 2
|
4138
|
+
}
|
4139
|
+
}
|
4140
|
+
},
|
4141
|
+
"ListDataStoresRequest": {
|
4055
4142
|
"fields": {
|
4056
4143
|
"parent": {
|
4057
4144
|
"type": "string",
|
4058
4145
|
"id": 1,
|
4059
4146
|
"options": {
|
4060
4147
|
"(google.api.field_behavior)": "REQUIRED",
|
4061
|
-
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/
|
4148
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Collection"
|
4062
4149
|
}
|
4063
4150
|
},
|
4064
4151
|
"pageSize": {
|
@@ -4068,14 +4155,18 @@
|
|
4068
4155
|
"pageToken": {
|
4069
4156
|
"type": "string",
|
4070
4157
|
"id": 3
|
4158
|
+
},
|
4159
|
+
"filter": {
|
4160
|
+
"type": "string",
|
4161
|
+
"id": 4
|
4071
4162
|
}
|
4072
4163
|
}
|
4073
4164
|
},
|
4074
|
-
"
|
4165
|
+
"ListDataStoresResponse": {
|
4075
4166
|
"fields": {
|
4076
|
-
"
|
4167
|
+
"dataStores": {
|
4077
4168
|
"rule": "repeated",
|
4078
|
-
"type": "
|
4169
|
+
"type": "DataStore",
|
4079
4170
|
"id": 1
|
4080
4171
|
},
|
4081
4172
|
"nextPageToken": {
|
@@ -4084,52 +4175,232 @@
|
|
4084
4175
|
}
|
4085
4176
|
}
|
4086
4177
|
},
|
4087
|
-
"
|
4178
|
+
"DeleteDataStoreRequest": {
|
4088
4179
|
"fields": {
|
4089
|
-
"
|
4180
|
+
"name": {
|
4090
4181
|
"type": "string",
|
4091
4182
|
"id": 1,
|
4092
4183
|
"options": {
|
4093
4184
|
"(google.api.field_behavior)": "REQUIRED",
|
4094
|
-
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/
|
4095
|
-
}
|
4096
|
-
},
|
4097
|
-
"document": {
|
4098
|
-
"type": "Document",
|
4099
|
-
"id": 2,
|
4100
|
-
"options": {
|
4101
|
-
"(google.api.field_behavior)": "REQUIRED"
|
4102
|
-
}
|
4103
|
-
},
|
4104
|
-
"documentId": {
|
4105
|
-
"type": "string",
|
4106
|
-
"id": 3,
|
4107
|
-
"options": {
|
4108
|
-
"(google.api.field_behavior)": "REQUIRED"
|
4185
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/DataStore"
|
4109
4186
|
}
|
4110
4187
|
}
|
4111
4188
|
}
|
4112
4189
|
},
|
4113
|
-
"
|
4190
|
+
"UpdateDataStoreRequest": {
|
4114
4191
|
"fields": {
|
4115
|
-
"
|
4116
|
-
"type": "
|
4192
|
+
"dataStore": {
|
4193
|
+
"type": "DataStore",
|
4117
4194
|
"id": 1,
|
4118
4195
|
"options": {
|
4119
4196
|
"(google.api.field_behavior)": "REQUIRED"
|
4120
4197
|
}
|
4121
4198
|
},
|
4122
|
-
"
|
4123
|
-
"type": "
|
4199
|
+
"updateMask": {
|
4200
|
+
"type": "google.protobuf.FieldMask",
|
4124
4201
|
"id": 2
|
4125
4202
|
}
|
4126
4203
|
}
|
4127
4204
|
},
|
4128
|
-
"
|
4205
|
+
"DeleteDataStoreMetadata": {
|
4129
4206
|
"fields": {
|
4130
|
-
"
|
4131
|
-
"type": "
|
4132
|
-
"id": 1
|
4207
|
+
"createTime": {
|
4208
|
+
"type": "google.protobuf.Timestamp",
|
4209
|
+
"id": 1
|
4210
|
+
},
|
4211
|
+
"updateTime": {
|
4212
|
+
"type": "google.protobuf.Timestamp",
|
4213
|
+
"id": 2
|
4214
|
+
}
|
4215
|
+
}
|
4216
|
+
},
|
4217
|
+
"DocumentService": {
|
4218
|
+
"options": {
|
4219
|
+
"(google.api.default_host)": "discoveryengine.googleapis.com",
|
4220
|
+
"(google.api.oauth_scopes)": "https://www.googleapis.com/auth/cloud-platform"
|
4221
|
+
},
|
4222
|
+
"methods": {
|
4223
|
+
"GetDocument": {
|
4224
|
+
"requestType": "GetDocumentRequest",
|
4225
|
+
"responseType": "Document",
|
4226
|
+
"options": {
|
4227
|
+
"(google.api.http).get": "/v1alpha/{name=projects/*/locations/*/dataStores/*/branches/*/documents/*}",
|
4228
|
+
"(google.api.http).additional_bindings.get": "/v1alpha/{name=projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*}",
|
4229
|
+
"(google.api.method_signature)": "name"
|
4230
|
+
},
|
4231
|
+
"parsedOptions": [
|
4232
|
+
{
|
4233
|
+
"(google.api.http)": {
|
4234
|
+
"get": "/v1alpha/{name=projects/*/locations/*/dataStores/*/branches/*/documents/*}",
|
4235
|
+
"additional_bindings": {
|
4236
|
+
"get": "/v1alpha/{name=projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*}"
|
4237
|
+
}
|
4238
|
+
}
|
4239
|
+
},
|
4240
|
+
{
|
4241
|
+
"(google.api.method_signature)": "name"
|
4242
|
+
}
|
4243
|
+
]
|
4244
|
+
},
|
4245
|
+
"ListDocuments": {
|
4246
|
+
"requestType": "ListDocumentsRequest",
|
4247
|
+
"responseType": "ListDocumentsResponse",
|
4248
|
+
"options": {
|
4249
|
+
"(google.api.http).get": "/v1alpha/{parent=projects/*/locations/*/dataStores/*/branches/*}/documents",
|
4250
|
+
"(google.api.http).additional_bindings.get": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*/branches/*}/documents",
|
4251
|
+
"(google.api.method_signature)": "parent"
|
4252
|
+
},
|
4253
|
+
"parsedOptions": [
|
4254
|
+
{
|
4255
|
+
"(google.api.http)": {
|
4256
|
+
"get": "/v1alpha/{parent=projects/*/locations/*/dataStores/*/branches/*}/documents",
|
4257
|
+
"additional_bindings": {
|
4258
|
+
"get": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*/branches/*}/documents"
|
4259
|
+
}
|
4260
|
+
}
|
4261
|
+
},
|
4262
|
+
{
|
4263
|
+
"(google.api.method_signature)": "parent"
|
4264
|
+
}
|
4265
|
+
]
|
4266
|
+
},
|
4267
|
+
"CreateDocument": {
|
4268
|
+
"requestType": "CreateDocumentRequest",
|
4269
|
+
"responseType": "Document",
|
4270
|
+
"options": {
|
4271
|
+
"(google.api.http).post": "/v1alpha/{parent=projects/*/locations/*/dataStores/*/branches/*}/documents",
|
4272
|
+
"(google.api.http).body": "document",
|
4273
|
+
"(google.api.http).additional_bindings.post": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*/branches/*}/documents",
|
4274
|
+
"(google.api.http).additional_bindings.body": "document",
|
4275
|
+
"(google.api.method_signature)": "parent,document,document_id"
|
4276
|
+
},
|
4277
|
+
"parsedOptions": [
|
4278
|
+
{
|
4279
|
+
"(google.api.http)": {
|
4280
|
+
"post": "/v1alpha/{parent=projects/*/locations/*/dataStores/*/branches/*}/documents",
|
4281
|
+
"body": "document",
|
4282
|
+
"additional_bindings": {
|
4283
|
+
"post": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*/branches/*}/documents",
|
4284
|
+
"body": "document"
|
4285
|
+
}
|
4286
|
+
}
|
4287
|
+
},
|
4288
|
+
{
|
4289
|
+
"(google.api.method_signature)": "parent,document,document_id"
|
4290
|
+
}
|
4291
|
+
]
|
4292
|
+
},
|
4293
|
+
"UpdateDocument": {
|
4294
|
+
"requestType": "UpdateDocumentRequest",
|
4295
|
+
"responseType": "Document",
|
4296
|
+
"options": {
|
4297
|
+
"(google.api.http).patch": "/v1alpha/{document.name=projects/*/locations/*/dataStores/*/branches/*/documents/*}",
|
4298
|
+
"(google.api.http).body": "document",
|
4299
|
+
"(google.api.http).additional_bindings.patch": "/v1alpha/{document.name=projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*}",
|
4300
|
+
"(google.api.http).additional_bindings.body": "document"
|
4301
|
+
},
|
4302
|
+
"parsedOptions": [
|
4303
|
+
{
|
4304
|
+
"(google.api.http)": {
|
4305
|
+
"patch": "/v1alpha/{document.name=projects/*/locations/*/dataStores/*/branches/*/documents/*}",
|
4306
|
+
"body": "document",
|
4307
|
+
"additional_bindings": {
|
4308
|
+
"patch": "/v1alpha/{document.name=projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*}",
|
4309
|
+
"body": "document"
|
4310
|
+
}
|
4311
|
+
}
|
4312
|
+
}
|
4313
|
+
]
|
4314
|
+
},
|
4315
|
+
"DeleteDocument": {
|
4316
|
+
"requestType": "DeleteDocumentRequest",
|
4317
|
+
"responseType": "google.protobuf.Empty",
|
4318
|
+
"options": {
|
4319
|
+
"(google.api.http).delete": "/v1alpha/{name=projects/*/locations/*/dataStores/*/branches/*/documents/*}",
|
4320
|
+
"(google.api.http).additional_bindings.delete": "/v1alpha/{name=projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*}",
|
4321
|
+
"(google.api.method_signature)": "name"
|
4322
|
+
},
|
4323
|
+
"parsedOptions": [
|
4324
|
+
{
|
4325
|
+
"(google.api.http)": {
|
4326
|
+
"delete": "/v1alpha/{name=projects/*/locations/*/dataStores/*/branches/*/documents/*}",
|
4327
|
+
"additional_bindings": {
|
4328
|
+
"delete": "/v1alpha/{name=projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*}"
|
4329
|
+
}
|
4330
|
+
}
|
4331
|
+
},
|
4332
|
+
{
|
4333
|
+
"(google.api.method_signature)": "name"
|
4334
|
+
}
|
4335
|
+
]
|
4336
|
+
},
|
4337
|
+
"ImportDocuments": {
|
4338
|
+
"requestType": "ImportDocumentsRequest",
|
4339
|
+
"responseType": "google.longrunning.Operation",
|
4340
|
+
"options": {
|
4341
|
+
"(google.api.http).post": "/v1alpha/{parent=projects/*/locations/*/dataStores/*/branches/*}/documents:import",
|
4342
|
+
"(google.api.http).body": "*",
|
4343
|
+
"(google.api.http).additional_bindings.post": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*/branches/*}/documents:import",
|
4344
|
+
"(google.api.http).additional_bindings.body": "*",
|
4345
|
+
"(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1alpha.ImportDocumentsResponse",
|
4346
|
+
"(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.ImportDocumentsMetadata"
|
4347
|
+
},
|
4348
|
+
"parsedOptions": [
|
4349
|
+
{
|
4350
|
+
"(google.api.http)": {
|
4351
|
+
"post": "/v1alpha/{parent=projects/*/locations/*/dataStores/*/branches/*}/documents:import",
|
4352
|
+
"body": "*",
|
4353
|
+
"additional_bindings": {
|
4354
|
+
"post": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*/branches/*}/documents:import",
|
4355
|
+
"body": "*"
|
4356
|
+
}
|
4357
|
+
}
|
4358
|
+
},
|
4359
|
+
{
|
4360
|
+
"(google.longrunning.operation_info)": {
|
4361
|
+
"response_type": "google.cloud.discoveryengine.v1alpha.ImportDocumentsResponse",
|
4362
|
+
"metadata_type": "google.cloud.discoveryengine.v1alpha.ImportDocumentsMetadata"
|
4363
|
+
}
|
4364
|
+
}
|
4365
|
+
]
|
4366
|
+
},
|
4367
|
+
"PurgeDocuments": {
|
4368
|
+
"requestType": "PurgeDocumentsRequest",
|
4369
|
+
"responseType": "google.longrunning.Operation",
|
4370
|
+
"options": {
|
4371
|
+
"(google.api.http).post": "/v1alpha/{parent=projects/*/locations/*/dataStores/*/branches/*}/documents:purge",
|
4372
|
+
"(google.api.http).body": "*",
|
4373
|
+
"(google.api.http).additional_bindings.post": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*/branches/*}/documents:purge",
|
4374
|
+
"(google.api.http).additional_bindings.body": "*",
|
4375
|
+
"(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1alpha.PurgeDocumentsResponse",
|
4376
|
+
"(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.PurgeDocumentsMetadata"
|
4377
|
+
},
|
4378
|
+
"parsedOptions": [
|
4379
|
+
{
|
4380
|
+
"(google.api.http)": {
|
4381
|
+
"post": "/v1alpha/{parent=projects/*/locations/*/dataStores/*/branches/*}/documents:purge",
|
4382
|
+
"body": "*",
|
4383
|
+
"additional_bindings": {
|
4384
|
+
"post": "/v1alpha/{parent=projects/*/locations/*/collections/*/dataStores/*/branches/*}/documents:purge",
|
4385
|
+
"body": "*"
|
4386
|
+
}
|
4387
|
+
}
|
4388
|
+
},
|
4389
|
+
{
|
4390
|
+
"(google.longrunning.operation_info)": {
|
4391
|
+
"response_type": "google.cloud.discoveryengine.v1alpha.PurgeDocumentsResponse",
|
4392
|
+
"metadata_type": "google.cloud.discoveryengine.v1alpha.PurgeDocumentsMetadata"
|
4393
|
+
}
|
4394
|
+
}
|
4395
|
+
]
|
4396
|
+
}
|
4397
|
+
}
|
4398
|
+
},
|
4399
|
+
"GetDocumentRequest": {
|
4400
|
+
"fields": {
|
4401
|
+
"name": {
|
4402
|
+
"type": "string",
|
4403
|
+
"id": 1,
|
4133
4404
|
"options": {
|
4134
4405
|
"(google.api.field_behavior)": "REQUIRED",
|
4135
4406
|
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Document"
|
@@ -4137,57 +4408,143 @@
|
|
4137
4408
|
}
|
4138
4409
|
}
|
4139
4410
|
},
|
4140
|
-
"
|
4411
|
+
"ListDocumentsRequest": {
|
4141
4412
|
"fields": {
|
4142
|
-
"
|
4143
|
-
"rule": "repeated",
|
4413
|
+
"parent": {
|
4144
4414
|
"type": "string",
|
4145
4415
|
"id": 1,
|
4146
4416
|
"options": {
|
4147
|
-
"(google.api.field_behavior)": "REQUIRED"
|
4417
|
+
"(google.api.field_behavior)": "REQUIRED",
|
4418
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Branch"
|
4148
4419
|
}
|
4149
4420
|
},
|
4150
|
-
"
|
4151
|
-
"type": "
|
4421
|
+
"pageSize": {
|
4422
|
+
"type": "int32",
|
4152
4423
|
"id": 2
|
4424
|
+
},
|
4425
|
+
"pageToken": {
|
4426
|
+
"type": "string",
|
4427
|
+
"id": 3
|
4153
4428
|
}
|
4154
4429
|
}
|
4155
4430
|
},
|
4156
|
-
"
|
4157
|
-
"oneofs": {
|
4158
|
-
"partition": {
|
4159
|
-
"oneof": [
|
4160
|
-
"partitionDate"
|
4161
|
-
]
|
4162
|
-
}
|
4163
|
-
},
|
4431
|
+
"ListDocumentsResponse": {
|
4164
4432
|
"fields": {
|
4165
|
-
"
|
4166
|
-
"
|
4167
|
-
"
|
4168
|
-
},
|
4169
|
-
"projectId": {
|
4170
|
-
"type": "string",
|
4433
|
+
"documents": {
|
4434
|
+
"rule": "repeated",
|
4435
|
+
"type": "Document",
|
4171
4436
|
"id": 1
|
4172
4437
|
},
|
4173
|
-
"
|
4438
|
+
"nextPageToken": {
|
4439
|
+
"type": "string",
|
4440
|
+
"id": 2
|
4441
|
+
}
|
4442
|
+
}
|
4443
|
+
},
|
4444
|
+
"CreateDocumentRequest": {
|
4445
|
+
"fields": {
|
4446
|
+
"parent": {
|
4174
4447
|
"type": "string",
|
4448
|
+
"id": 1,
|
4449
|
+
"options": {
|
4450
|
+
"(google.api.field_behavior)": "REQUIRED",
|
4451
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Branch"
|
4452
|
+
}
|
4453
|
+
},
|
4454
|
+
"document": {
|
4455
|
+
"type": "Document",
|
4175
4456
|
"id": 2,
|
4176
4457
|
"options": {
|
4177
4458
|
"(google.api.field_behavior)": "REQUIRED"
|
4178
4459
|
}
|
4179
4460
|
},
|
4180
|
-
"
|
4461
|
+
"documentId": {
|
4181
4462
|
"type": "string",
|
4182
4463
|
"id": 3,
|
4183
4464
|
"options": {
|
4184
4465
|
"(google.api.field_behavior)": "REQUIRED"
|
4185
4466
|
}
|
4186
|
-
}
|
4187
|
-
|
4188
|
-
|
4189
|
-
|
4190
|
-
|
4467
|
+
}
|
4468
|
+
}
|
4469
|
+
},
|
4470
|
+
"UpdateDocumentRequest": {
|
4471
|
+
"fields": {
|
4472
|
+
"document": {
|
4473
|
+
"type": "Document",
|
4474
|
+
"id": 1,
|
4475
|
+
"options": {
|
4476
|
+
"(google.api.field_behavior)": "REQUIRED"
|
4477
|
+
}
|
4478
|
+
},
|
4479
|
+
"allowMissing": {
|
4480
|
+
"type": "bool",
|
4481
|
+
"id": 2
|
4482
|
+
}
|
4483
|
+
}
|
4484
|
+
},
|
4485
|
+
"DeleteDocumentRequest": {
|
4486
|
+
"fields": {
|
4487
|
+
"name": {
|
4488
|
+
"type": "string",
|
4489
|
+
"id": 1,
|
4490
|
+
"options": {
|
4491
|
+
"(google.api.field_behavior)": "REQUIRED",
|
4492
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Document"
|
4493
|
+
}
|
4494
|
+
}
|
4495
|
+
}
|
4496
|
+
},
|
4497
|
+
"GcsSource": {
|
4498
|
+
"fields": {
|
4499
|
+
"inputUris": {
|
4500
|
+
"rule": "repeated",
|
4501
|
+
"type": "string",
|
4502
|
+
"id": 1,
|
4503
|
+
"options": {
|
4504
|
+
"(google.api.field_behavior)": "REQUIRED"
|
4505
|
+
}
|
4506
|
+
},
|
4507
|
+
"dataSchema": {
|
4508
|
+
"type": "string",
|
4509
|
+
"id": 2
|
4510
|
+
}
|
4511
|
+
}
|
4512
|
+
},
|
4513
|
+
"BigQuerySource": {
|
4514
|
+
"oneofs": {
|
4515
|
+
"partition": {
|
4516
|
+
"oneof": [
|
4517
|
+
"partitionDate"
|
4518
|
+
]
|
4519
|
+
}
|
4520
|
+
},
|
4521
|
+
"fields": {
|
4522
|
+
"partitionDate": {
|
4523
|
+
"type": "google.type.Date",
|
4524
|
+
"id": 5
|
4525
|
+
},
|
4526
|
+
"projectId": {
|
4527
|
+
"type": "string",
|
4528
|
+
"id": 1
|
4529
|
+
},
|
4530
|
+
"datasetId": {
|
4531
|
+
"type": "string",
|
4532
|
+
"id": 2,
|
4533
|
+
"options": {
|
4534
|
+
"(google.api.field_behavior)": "REQUIRED"
|
4535
|
+
}
|
4536
|
+
},
|
4537
|
+
"tableId": {
|
4538
|
+
"type": "string",
|
4539
|
+
"id": 3,
|
4540
|
+
"options": {
|
4541
|
+
"(google.api.field_behavior)": "REQUIRED"
|
4542
|
+
}
|
4543
|
+
},
|
4544
|
+
"gcsStagingDir": {
|
4545
|
+
"type": "string",
|
4546
|
+
"id": 4
|
4547
|
+
},
|
4191
4548
|
"dataSchema": {
|
4192
4549
|
"type": "string",
|
4193
4550
|
"id": 6
|
@@ -4570,268 +4927,908 @@
|
|
4570
4927
|
"discountValue"
|
4571
4928
|
]
|
4572
4929
|
}
|
4573
|
-
},
|
4930
|
+
},
|
4931
|
+
"fields": {
|
4932
|
+
"value": {
|
4933
|
+
"type": "float",
|
4934
|
+
"id": 1,
|
4935
|
+
"options": {
|
4936
|
+
"(google.api.field_behavior)": "REQUIRED",
|
4937
|
+
"proto3_optional": true
|
4938
|
+
}
|
4939
|
+
},
|
4940
|
+
"currency": {
|
4941
|
+
"type": "string",
|
4942
|
+
"id": 2,
|
4943
|
+
"options": {
|
4944
|
+
"(google.api.field_behavior)": "REQUIRED"
|
4945
|
+
}
|
4946
|
+
},
|
4947
|
+
"transactionId": {
|
4948
|
+
"type": "string",
|
4949
|
+
"id": 3
|
4950
|
+
},
|
4951
|
+
"tax": {
|
4952
|
+
"type": "float",
|
4953
|
+
"id": 4,
|
4954
|
+
"options": {
|
4955
|
+
"proto3_optional": true
|
4956
|
+
}
|
4957
|
+
},
|
4958
|
+
"cost": {
|
4959
|
+
"type": "float",
|
4960
|
+
"id": 5,
|
4961
|
+
"options": {
|
4962
|
+
"proto3_optional": true
|
4963
|
+
}
|
4964
|
+
},
|
4965
|
+
"discountValue": {
|
4966
|
+
"type": "float",
|
4967
|
+
"id": 6,
|
4968
|
+
"options": {
|
4969
|
+
"proto3_optional": true
|
4970
|
+
}
|
4971
|
+
}
|
4972
|
+
}
|
4973
|
+
},
|
4974
|
+
"DocumentInfo": {
|
4975
|
+
"oneofs": {
|
4976
|
+
"documentDescriptor": {
|
4977
|
+
"oneof": [
|
4978
|
+
"id",
|
4979
|
+
"name",
|
4980
|
+
"uri"
|
4981
|
+
]
|
4982
|
+
},
|
4983
|
+
"_quantity": {
|
4984
|
+
"oneof": [
|
4985
|
+
"quantity"
|
4986
|
+
]
|
4987
|
+
}
|
4988
|
+
},
|
4989
|
+
"fields": {
|
4990
|
+
"id": {
|
4991
|
+
"type": "string",
|
4992
|
+
"id": 1
|
4993
|
+
},
|
4994
|
+
"name": {
|
4995
|
+
"type": "string",
|
4996
|
+
"id": 2,
|
4997
|
+
"options": {
|
4998
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Document"
|
4999
|
+
}
|
5000
|
+
},
|
5001
|
+
"uri": {
|
5002
|
+
"type": "string",
|
5003
|
+
"id": 6
|
5004
|
+
},
|
5005
|
+
"quantity": {
|
5006
|
+
"type": "int32",
|
5007
|
+
"id": 3,
|
5008
|
+
"options": {
|
5009
|
+
"proto3_optional": true
|
5010
|
+
}
|
5011
|
+
},
|
5012
|
+
"promotionIds": {
|
5013
|
+
"rule": "repeated",
|
5014
|
+
"type": "string",
|
5015
|
+
"id": 4
|
5016
|
+
}
|
5017
|
+
}
|
5018
|
+
},
|
5019
|
+
"PanelInfo": {
|
5020
|
+
"oneofs": {
|
5021
|
+
"_panelPosition": {
|
5022
|
+
"oneof": [
|
5023
|
+
"panelPosition"
|
5024
|
+
]
|
5025
|
+
},
|
5026
|
+
"_totalPanels": {
|
5027
|
+
"oneof": [
|
5028
|
+
"totalPanels"
|
5029
|
+
]
|
5030
|
+
}
|
5031
|
+
},
|
5032
|
+
"fields": {
|
5033
|
+
"panelId": {
|
5034
|
+
"type": "string",
|
5035
|
+
"id": 2,
|
5036
|
+
"options": {
|
5037
|
+
"(google.api.field_behavior)": "REQUIRED"
|
5038
|
+
}
|
5039
|
+
},
|
5040
|
+
"displayName": {
|
5041
|
+
"type": "string",
|
5042
|
+
"id": 3
|
5043
|
+
},
|
5044
|
+
"panelPosition": {
|
5045
|
+
"type": "int32",
|
5046
|
+
"id": 4,
|
5047
|
+
"options": {
|
5048
|
+
"proto3_optional": true
|
5049
|
+
}
|
5050
|
+
},
|
5051
|
+
"totalPanels": {
|
5052
|
+
"type": "int32",
|
5053
|
+
"id": 5,
|
5054
|
+
"options": {
|
5055
|
+
"proto3_optional": true
|
5056
|
+
}
|
5057
|
+
}
|
5058
|
+
}
|
5059
|
+
},
|
5060
|
+
"MediaInfo": {
|
5061
|
+
"oneofs": {
|
5062
|
+
"_mediaProgressPercentage": {
|
5063
|
+
"oneof": [
|
5064
|
+
"mediaProgressPercentage"
|
5065
|
+
]
|
5066
|
+
}
|
5067
|
+
},
|
5068
|
+
"fields": {
|
5069
|
+
"mediaProgressDuration": {
|
5070
|
+
"type": "google.protobuf.Duration",
|
5071
|
+
"id": 1
|
5072
|
+
},
|
5073
|
+
"mediaProgressPercentage": {
|
5074
|
+
"type": "float",
|
5075
|
+
"id": 2,
|
5076
|
+
"options": {
|
5077
|
+
"proto3_optional": true
|
5078
|
+
}
|
5079
|
+
}
|
5080
|
+
}
|
5081
|
+
},
|
5082
|
+
"PurgeUserEventsRequest": {
|
5083
|
+
"fields": {
|
5084
|
+
"parent": {
|
5085
|
+
"type": "string",
|
5086
|
+
"id": 1,
|
5087
|
+
"options": {
|
5088
|
+
"(google.api.field_behavior)": "REQUIRED",
|
5089
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/DataStore"
|
5090
|
+
}
|
5091
|
+
},
|
5092
|
+
"filter": {
|
5093
|
+
"type": "string",
|
5094
|
+
"id": 2,
|
5095
|
+
"options": {
|
5096
|
+
"(google.api.field_behavior)": "REQUIRED"
|
5097
|
+
}
|
5098
|
+
},
|
5099
|
+
"force": {
|
5100
|
+
"type": "bool",
|
5101
|
+
"id": 3
|
5102
|
+
}
|
5103
|
+
}
|
5104
|
+
},
|
5105
|
+
"PurgeUserEventsResponse": {
|
5106
|
+
"fields": {
|
5107
|
+
"purgeCount": {
|
5108
|
+
"type": "int64",
|
5109
|
+
"id": 1
|
5110
|
+
}
|
5111
|
+
}
|
5112
|
+
},
|
5113
|
+
"PurgeUserEventsMetadata": {
|
5114
|
+
"fields": {
|
5115
|
+
"createTime": {
|
5116
|
+
"type": "google.protobuf.Timestamp",
|
5117
|
+
"id": 1
|
5118
|
+
},
|
5119
|
+
"updateTime": {
|
5120
|
+
"type": "google.protobuf.Timestamp",
|
5121
|
+
"id": 2
|
5122
|
+
},
|
5123
|
+
"successCount": {
|
5124
|
+
"type": "int64",
|
5125
|
+
"id": 3
|
5126
|
+
},
|
5127
|
+
"failureCount": {
|
5128
|
+
"type": "int64",
|
5129
|
+
"id": 4
|
5130
|
+
}
|
5131
|
+
}
|
5132
|
+
},
|
5133
|
+
"PurgeDocumentsRequest": {
|
5134
|
+
"fields": {
|
5135
|
+
"parent": {
|
5136
|
+
"type": "string",
|
5137
|
+
"id": 1,
|
5138
|
+
"options": {
|
5139
|
+
"(google.api.field_behavior)": "REQUIRED",
|
5140
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Branch"
|
5141
|
+
}
|
5142
|
+
},
|
5143
|
+
"filter": {
|
5144
|
+
"type": "string",
|
5145
|
+
"id": 2,
|
5146
|
+
"options": {
|
5147
|
+
"(google.api.field_behavior)": "REQUIRED"
|
5148
|
+
}
|
5149
|
+
},
|
5150
|
+
"force": {
|
5151
|
+
"type": "bool",
|
5152
|
+
"id": 3
|
5153
|
+
}
|
5154
|
+
}
|
5155
|
+
},
|
5156
|
+
"PurgeDocumentsResponse": {
|
5157
|
+
"fields": {
|
5158
|
+
"purgeCount": {
|
5159
|
+
"type": "int64",
|
5160
|
+
"id": 1
|
5161
|
+
},
|
5162
|
+
"purgeSample": {
|
5163
|
+
"rule": "repeated",
|
5164
|
+
"type": "string",
|
5165
|
+
"id": 2,
|
5166
|
+
"options": {
|
5167
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Document"
|
5168
|
+
}
|
5169
|
+
}
|
5170
|
+
}
|
5171
|
+
},
|
5172
|
+
"PurgeDocumentsMetadata": {
|
5173
|
+
"fields": {
|
5174
|
+
"createTime": {
|
5175
|
+
"type": "google.protobuf.Timestamp",
|
5176
|
+
"id": 1
|
5177
|
+
},
|
5178
|
+
"updateTime": {
|
5179
|
+
"type": "google.protobuf.Timestamp",
|
5180
|
+
"id": 2
|
5181
|
+
},
|
5182
|
+
"successCount": {
|
5183
|
+
"type": "int64",
|
5184
|
+
"id": 3
|
5185
|
+
},
|
5186
|
+
"failureCount": {
|
5187
|
+
"type": "int64",
|
5188
|
+
"id": 4
|
5189
|
+
}
|
5190
|
+
}
|
5191
|
+
},
|
5192
|
+
"Engine": {
|
5193
|
+
"options": {
|
5194
|
+
"(google.api.resource).type": "discoveryengine.googleapis.com/Engine",
|
5195
|
+
"(google.api.resource).pattern": "projects/{project}/locations/{location}/collections/{collection}/engines/{engine}"
|
5196
|
+
},
|
5197
|
+
"oneofs": {
|
5198
|
+
"engineConfig": {
|
5199
|
+
"oneof": [
|
5200
|
+
"similarDocumentsConfig",
|
5201
|
+
"chatEngineConfig",
|
5202
|
+
"searchEngineConfig",
|
5203
|
+
"mediaRecommendationEngineConfig"
|
5204
|
+
]
|
5205
|
+
},
|
5206
|
+
"engineMetadata": {
|
5207
|
+
"oneof": [
|
5208
|
+
"recommendationMetadata",
|
5209
|
+
"chatEngineMetadata"
|
5210
|
+
]
|
5211
|
+
}
|
5212
|
+
},
|
5213
|
+
"fields": {
|
5214
|
+
"similarDocumentsConfig": {
|
5215
|
+
"type": "SimilarDocumentsEngineConfig",
|
5216
|
+
"id": 9
|
5217
|
+
},
|
5218
|
+
"chatEngineConfig": {
|
5219
|
+
"type": "ChatEngineConfig",
|
5220
|
+
"id": 11
|
5221
|
+
},
|
5222
|
+
"searchEngineConfig": {
|
5223
|
+
"type": "SearchEngineConfig",
|
5224
|
+
"id": 13
|
5225
|
+
},
|
5226
|
+
"mediaRecommendationEngineConfig": {
|
5227
|
+
"type": "MediaRecommendationEngineConfig",
|
5228
|
+
"id": 14
|
5229
|
+
},
|
5230
|
+
"recommendationMetadata": {
|
5231
|
+
"type": "RecommendationMetadata",
|
5232
|
+
"id": 10,
|
5233
|
+
"options": {
|
5234
|
+
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
5235
|
+
}
|
5236
|
+
},
|
5237
|
+
"chatEngineMetadata": {
|
5238
|
+
"type": "ChatEngineMetadata",
|
5239
|
+
"id": 12,
|
5240
|
+
"options": {
|
5241
|
+
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
5242
|
+
}
|
5243
|
+
},
|
5244
|
+
"name": {
|
5245
|
+
"type": "string",
|
5246
|
+
"id": 1,
|
5247
|
+
"options": {
|
5248
|
+
"(google.api.field_behavior)": "IMMUTABLE"
|
5249
|
+
}
|
5250
|
+
},
|
5251
|
+
"displayName": {
|
5252
|
+
"type": "string",
|
5253
|
+
"id": 2,
|
5254
|
+
"options": {
|
5255
|
+
"(google.api.field_behavior)": "REQUIRED"
|
5256
|
+
}
|
5257
|
+
},
|
5258
|
+
"createTime": {
|
5259
|
+
"type": "google.protobuf.Timestamp",
|
5260
|
+
"id": 3,
|
5261
|
+
"options": {
|
5262
|
+
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
5263
|
+
}
|
5264
|
+
},
|
5265
|
+
"updateTime": {
|
5266
|
+
"type": "google.protobuf.Timestamp",
|
5267
|
+
"id": 4,
|
5268
|
+
"options": {
|
5269
|
+
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
5270
|
+
}
|
5271
|
+
},
|
5272
|
+
"dataStoreIds": {
|
5273
|
+
"rule": "repeated",
|
5274
|
+
"type": "string",
|
5275
|
+
"id": 5
|
5276
|
+
},
|
5277
|
+
"solutionType": {
|
5278
|
+
"type": "SolutionType",
|
5279
|
+
"id": 6,
|
5280
|
+
"options": {
|
5281
|
+
"(google.api.field_behavior)": "REQUIRED"
|
5282
|
+
}
|
5283
|
+
},
|
5284
|
+
"industryVertical": {
|
5285
|
+
"type": "IndustryVertical",
|
5286
|
+
"id": 16
|
5287
|
+
},
|
5288
|
+
"commonConfig": {
|
5289
|
+
"type": "CommonConfig",
|
5290
|
+
"id": 15
|
5291
|
+
}
|
5292
|
+
},
|
5293
|
+
"nested": {
|
5294
|
+
"SearchEngineConfig": {
|
5295
|
+
"fields": {
|
5296
|
+
"searchTier": {
|
5297
|
+
"type": "SearchTier",
|
5298
|
+
"id": 1
|
5299
|
+
},
|
5300
|
+
"searchAddOns": {
|
5301
|
+
"rule": "repeated",
|
5302
|
+
"type": "SearchAddOn",
|
5303
|
+
"id": 2
|
5304
|
+
}
|
5305
|
+
}
|
5306
|
+
},
|
5307
|
+
"SimilarDocumentsEngineConfig": {
|
5308
|
+
"fields": {}
|
5309
|
+
},
|
5310
|
+
"MediaRecommendationEngineConfig": {
|
5311
|
+
"fields": {
|
5312
|
+
"type": {
|
5313
|
+
"type": "string",
|
5314
|
+
"id": 1,
|
5315
|
+
"options": {
|
5316
|
+
"(google.api.field_behavior)": "REQUIRED"
|
5317
|
+
}
|
5318
|
+
},
|
5319
|
+
"optimizationObjective": {
|
5320
|
+
"type": "string",
|
5321
|
+
"id": 2
|
5322
|
+
},
|
5323
|
+
"optimizationObjectiveConfig": {
|
5324
|
+
"type": "OptimizationObjectiveConfig",
|
5325
|
+
"id": 3
|
5326
|
+
},
|
5327
|
+
"trainingState": {
|
5328
|
+
"type": "TrainingState",
|
5329
|
+
"id": 4
|
5330
|
+
}
|
5331
|
+
},
|
5332
|
+
"nested": {
|
5333
|
+
"OptimizationObjectiveConfig": {
|
5334
|
+
"fields": {
|
5335
|
+
"targetField": {
|
5336
|
+
"type": "string",
|
5337
|
+
"id": 1,
|
5338
|
+
"options": {
|
5339
|
+
"(google.api.field_behavior)": "REQUIRED"
|
5340
|
+
}
|
5341
|
+
},
|
5342
|
+
"targetFieldValueFloat": {
|
5343
|
+
"type": "float",
|
5344
|
+
"id": 2,
|
5345
|
+
"options": {
|
5346
|
+
"(google.api.field_behavior)": "REQUIRED"
|
5347
|
+
}
|
5348
|
+
}
|
5349
|
+
}
|
5350
|
+
},
|
5351
|
+
"TrainingState": {
|
5352
|
+
"values": {
|
5353
|
+
"TRAINING_STATE_UNSPECIFIED": 0,
|
5354
|
+
"PAUSED": 1,
|
5355
|
+
"TRAINING": 2
|
5356
|
+
}
|
5357
|
+
}
|
5358
|
+
}
|
5359
|
+
},
|
5360
|
+
"ChatEngineConfig": {
|
5361
|
+
"fields": {
|
5362
|
+
"agentCreationConfig": {
|
5363
|
+
"type": "AgentCreationConfig",
|
5364
|
+
"id": 1
|
5365
|
+
},
|
5366
|
+
"dialogflowAgentToLink": {
|
5367
|
+
"type": "string",
|
5368
|
+
"id": 2
|
5369
|
+
}
|
5370
|
+
},
|
5371
|
+
"nested": {
|
5372
|
+
"AgentCreationConfig": {
|
5373
|
+
"fields": {
|
5374
|
+
"business": {
|
5375
|
+
"type": "string",
|
5376
|
+
"id": 1
|
5377
|
+
},
|
5378
|
+
"defaultLanguageCode": {
|
5379
|
+
"type": "string",
|
5380
|
+
"id": 2
|
5381
|
+
},
|
5382
|
+
"timeZone": {
|
5383
|
+
"type": "string",
|
5384
|
+
"id": 3,
|
5385
|
+
"options": {
|
5386
|
+
"(google.api.field_behavior)": "REQUIRED"
|
5387
|
+
}
|
5388
|
+
}
|
5389
|
+
}
|
5390
|
+
}
|
5391
|
+
}
|
5392
|
+
},
|
5393
|
+
"CommonConfig": {
|
5394
|
+
"fields": {
|
5395
|
+
"companyName": {
|
5396
|
+
"type": "string",
|
5397
|
+
"id": 1
|
5398
|
+
}
|
5399
|
+
}
|
5400
|
+
},
|
5401
|
+
"RecommendationMetadata": {
|
5402
|
+
"fields": {
|
5403
|
+
"servingState": {
|
5404
|
+
"type": "ServingState",
|
5405
|
+
"id": 1,
|
5406
|
+
"options": {
|
5407
|
+
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
5408
|
+
}
|
5409
|
+
},
|
5410
|
+
"dataState": {
|
5411
|
+
"type": "DataState",
|
5412
|
+
"id": 2,
|
5413
|
+
"options": {
|
5414
|
+
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
5415
|
+
}
|
5416
|
+
},
|
5417
|
+
"lastTuneTime": {
|
5418
|
+
"type": "google.protobuf.Timestamp",
|
5419
|
+
"id": 3,
|
5420
|
+
"options": {
|
5421
|
+
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
5422
|
+
}
|
5423
|
+
},
|
5424
|
+
"tuningOperation": {
|
5425
|
+
"type": "string",
|
5426
|
+
"id": 4,
|
5427
|
+
"options": {
|
5428
|
+
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
5429
|
+
}
|
5430
|
+
}
|
5431
|
+
},
|
5432
|
+
"nested": {
|
5433
|
+
"ServingState": {
|
5434
|
+
"values": {
|
5435
|
+
"SERVING_STATE_UNSPECIFIED": 0,
|
5436
|
+
"INACTIVE": 1,
|
5437
|
+
"ACTIVE": 2,
|
5438
|
+
"TUNED": 3
|
5439
|
+
}
|
5440
|
+
},
|
5441
|
+
"DataState": {
|
5442
|
+
"values": {
|
5443
|
+
"DATA_STATE_UNSPECIFIED": 0,
|
5444
|
+
"DATA_OK": 1,
|
5445
|
+
"DATA_ERROR": 2
|
5446
|
+
}
|
5447
|
+
}
|
5448
|
+
}
|
5449
|
+
},
|
5450
|
+
"ChatEngineMetadata": {
|
5451
|
+
"fields": {
|
5452
|
+
"dialogflowAgent": {
|
5453
|
+
"type": "string",
|
5454
|
+
"id": 1
|
5455
|
+
}
|
5456
|
+
}
|
5457
|
+
}
|
5458
|
+
}
|
5459
|
+
},
|
5460
|
+
"EngineService": {
|
5461
|
+
"options": {
|
5462
|
+
"(google.api.default_host)": "discoveryengine.googleapis.com",
|
5463
|
+
"(google.api.oauth_scopes)": "https://www.googleapis.com/auth/cloud-platform"
|
5464
|
+
},
|
5465
|
+
"methods": {
|
5466
|
+
"CreateEngine": {
|
5467
|
+
"requestType": "CreateEngineRequest",
|
5468
|
+
"responseType": "google.longrunning.Operation",
|
5469
|
+
"options": {
|
5470
|
+
"(google.api.http).post": "/v1alpha/{parent=projects/*/locations/*/collections/*}/engines",
|
5471
|
+
"(google.api.http).body": "engine",
|
5472
|
+
"(google.api.method_signature)": "parent,engine,engine_id",
|
5473
|
+
"(google.longrunning.operation_info).response_type": "google.cloud.discoveryengine.v1alpha.Engine",
|
5474
|
+
"(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.CreateEngineMetadata"
|
5475
|
+
},
|
5476
|
+
"parsedOptions": [
|
5477
|
+
{
|
5478
|
+
"(google.api.http)": {
|
5479
|
+
"post": "/v1alpha/{parent=projects/*/locations/*/collections/*}/engines",
|
5480
|
+
"body": "engine"
|
5481
|
+
}
|
5482
|
+
},
|
5483
|
+
{
|
5484
|
+
"(google.api.method_signature)": "parent,engine,engine_id"
|
5485
|
+
},
|
5486
|
+
{
|
5487
|
+
"(google.longrunning.operation_info)": {
|
5488
|
+
"response_type": "google.cloud.discoveryengine.v1alpha.Engine",
|
5489
|
+
"metadata_type": "google.cloud.discoveryengine.v1alpha.CreateEngineMetadata"
|
5490
|
+
}
|
5491
|
+
}
|
5492
|
+
]
|
5493
|
+
},
|
5494
|
+
"DeleteEngine": {
|
5495
|
+
"requestType": "DeleteEngineRequest",
|
5496
|
+
"responseType": "google.longrunning.Operation",
|
5497
|
+
"options": {
|
5498
|
+
"(google.api.http).delete": "/v1alpha/{name=projects/*/locations/*/collections/*/engines/*}",
|
5499
|
+
"(google.api.method_signature)": "name",
|
5500
|
+
"(google.longrunning.operation_info).response_type": "google.protobuf.Empty",
|
5501
|
+
"(google.longrunning.operation_info).metadata_type": "google.cloud.discoveryengine.v1alpha.DeleteEngineMetadata"
|
5502
|
+
},
|
5503
|
+
"parsedOptions": [
|
5504
|
+
{
|
5505
|
+
"(google.api.http)": {
|
5506
|
+
"delete": "/v1alpha/{name=projects/*/locations/*/collections/*/engines/*}"
|
5507
|
+
}
|
5508
|
+
},
|
5509
|
+
{
|
5510
|
+
"(google.api.method_signature)": "name"
|
5511
|
+
},
|
5512
|
+
{
|
5513
|
+
"(google.longrunning.operation_info)": {
|
5514
|
+
"response_type": "google.protobuf.Empty",
|
5515
|
+
"metadata_type": "google.cloud.discoveryengine.v1alpha.DeleteEngineMetadata"
|
5516
|
+
}
|
5517
|
+
}
|
5518
|
+
]
|
5519
|
+
},
|
5520
|
+
"UpdateEngine": {
|
5521
|
+
"requestType": "UpdateEngineRequest",
|
5522
|
+
"responseType": "Engine",
|
5523
|
+
"options": {
|
5524
|
+
"(google.api.http).patch": "/v1alpha/{engine.name=projects/*/locations/*/collections/*/engines/*}",
|
5525
|
+
"(google.api.http).body": "engine",
|
5526
|
+
"(google.api.method_signature)": "engine,update_mask"
|
5527
|
+
},
|
5528
|
+
"parsedOptions": [
|
5529
|
+
{
|
5530
|
+
"(google.api.http)": {
|
5531
|
+
"patch": "/v1alpha/{engine.name=projects/*/locations/*/collections/*/engines/*}",
|
5532
|
+
"body": "engine"
|
5533
|
+
}
|
5534
|
+
},
|
5535
|
+
{
|
5536
|
+
"(google.api.method_signature)": "engine,update_mask"
|
5537
|
+
}
|
5538
|
+
]
|
5539
|
+
},
|
5540
|
+
"GetEngine": {
|
5541
|
+
"requestType": "GetEngineRequest",
|
5542
|
+
"responseType": "Engine",
|
5543
|
+
"options": {
|
5544
|
+
"(google.api.http).get": "/v1alpha/{name=projects/*/locations/*/collections/*/engines/*}",
|
5545
|
+
"(google.api.method_signature)": "name"
|
5546
|
+
},
|
5547
|
+
"parsedOptions": [
|
5548
|
+
{
|
5549
|
+
"(google.api.http)": {
|
5550
|
+
"get": "/v1alpha/{name=projects/*/locations/*/collections/*/engines/*}"
|
5551
|
+
}
|
5552
|
+
},
|
5553
|
+
{
|
5554
|
+
"(google.api.method_signature)": "name"
|
5555
|
+
}
|
5556
|
+
]
|
5557
|
+
},
|
5558
|
+
"ListEngines": {
|
5559
|
+
"requestType": "ListEnginesRequest",
|
5560
|
+
"responseType": "ListEnginesResponse",
|
5561
|
+
"options": {
|
5562
|
+
"(google.api.http).get": "/v1alpha/{parent=projects/*/locations/*/collections/*}/engines",
|
5563
|
+
"(google.api.method_signature)": "parent"
|
5564
|
+
},
|
5565
|
+
"parsedOptions": [
|
5566
|
+
{
|
5567
|
+
"(google.api.http)": {
|
5568
|
+
"get": "/v1alpha/{parent=projects/*/locations/*/collections/*}/engines"
|
5569
|
+
}
|
5570
|
+
},
|
5571
|
+
{
|
5572
|
+
"(google.api.method_signature)": "parent"
|
5573
|
+
}
|
5574
|
+
]
|
5575
|
+
},
|
5576
|
+
"PauseEngine": {
|
5577
|
+
"requestType": "PauseEngineRequest",
|
5578
|
+
"responseType": "Engine",
|
5579
|
+
"options": {
|
5580
|
+
"(google.api.http).post": "/v1alpha/{name=projects/*/locations/*/collections/*/engines/*}:pause",
|
5581
|
+
"(google.api.http).body": "*",
|
5582
|
+
"(google.api.method_signature)": "name"
|
5583
|
+
},
|
5584
|
+
"parsedOptions": [
|
5585
|
+
{
|
5586
|
+
"(google.api.http)": {
|
5587
|
+
"post": "/v1alpha/{name=projects/*/locations/*/collections/*/engines/*}:pause",
|
5588
|
+
"body": "*"
|
5589
|
+
}
|
5590
|
+
},
|
5591
|
+
{
|
5592
|
+
"(google.api.method_signature)": "name"
|
5593
|
+
}
|
5594
|
+
]
|
5595
|
+
},
|
5596
|
+
"ResumeEngine": {
|
5597
|
+
"requestType": "ResumeEngineRequest",
|
5598
|
+
"responseType": "Engine",
|
5599
|
+
"options": {
|
5600
|
+
"(google.api.http).post": "/v1alpha/{name=projects/*/locations/*/collections/*/engines/*}:resume",
|
5601
|
+
"(google.api.http).body": "*",
|
5602
|
+
"(google.api.method_signature)": "name"
|
5603
|
+
},
|
5604
|
+
"parsedOptions": [
|
5605
|
+
{
|
5606
|
+
"(google.api.http)": {
|
5607
|
+
"post": "/v1alpha/{name=projects/*/locations/*/collections/*/engines/*}:resume",
|
5608
|
+
"body": "*"
|
5609
|
+
}
|
5610
|
+
},
|
5611
|
+
{
|
5612
|
+
"(google.api.method_signature)": "name"
|
5613
|
+
}
|
5614
|
+
]
|
5615
|
+
},
|
5616
|
+
"TuneEngine": {
|
5617
|
+
"requestType": "TuneEngineRequest",
|
5618
|
+
"responseType": "google.longrunning.Operation",
|
5619
|
+
"options": {
|
5620
|
+
"(google.api.http).post": "/v1alpha/{name=projects/*/locations/*/collections/*/engines/*}:tune",
|
5621
|
+
"(google.api.http).body": "*",
|
5622
|
+
"(google.api.method_signature)": "name",
|
5623
|
+
"(google.longrunning.operation_info).response_type": "TuneEngineResponse",
|
5624
|
+
"(google.longrunning.operation_info).metadata_type": "TuneEngineMetadata"
|
5625
|
+
},
|
5626
|
+
"parsedOptions": [
|
5627
|
+
{
|
5628
|
+
"(google.api.http)": {
|
5629
|
+
"post": "/v1alpha/{name=projects/*/locations/*/collections/*/engines/*}:tune",
|
5630
|
+
"body": "*"
|
5631
|
+
}
|
5632
|
+
},
|
5633
|
+
{
|
5634
|
+
"(google.api.method_signature)": "name"
|
5635
|
+
},
|
5636
|
+
{
|
5637
|
+
"(google.longrunning.operation_info)": {
|
5638
|
+
"response_type": "TuneEngineResponse",
|
5639
|
+
"metadata_type": "TuneEngineMetadata"
|
5640
|
+
}
|
5641
|
+
}
|
5642
|
+
]
|
5643
|
+
}
|
5644
|
+
}
|
5645
|
+
},
|
5646
|
+
"CreateEngineRequest": {
|
4574
5647
|
"fields": {
|
4575
|
-
"
|
4576
|
-
"type": "
|
5648
|
+
"parent": {
|
5649
|
+
"type": "string",
|
4577
5650
|
"id": 1,
|
4578
5651
|
"options": {
|
4579
5652
|
"(google.api.field_behavior)": "REQUIRED",
|
4580
|
-
"
|
5653
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Collection"
|
4581
5654
|
}
|
4582
5655
|
},
|
4583
|
-
"
|
4584
|
-
"type": "
|
5656
|
+
"engine": {
|
5657
|
+
"type": "Engine",
|
4585
5658
|
"id": 2,
|
4586
5659
|
"options": {
|
4587
5660
|
"(google.api.field_behavior)": "REQUIRED"
|
4588
5661
|
}
|
4589
5662
|
},
|
4590
|
-
"
|
5663
|
+
"engineId": {
|
4591
5664
|
"type": "string",
|
4592
|
-
"id": 3
|
4593
|
-
},
|
4594
|
-
"tax": {
|
4595
|
-
"type": "float",
|
4596
|
-
"id": 4,
|
4597
|
-
"options": {
|
4598
|
-
"proto3_optional": true
|
4599
|
-
}
|
4600
|
-
},
|
4601
|
-
"cost": {
|
4602
|
-
"type": "float",
|
4603
|
-
"id": 5,
|
4604
|
-
"options": {
|
4605
|
-
"proto3_optional": true
|
4606
|
-
}
|
4607
|
-
},
|
4608
|
-
"discountValue": {
|
4609
|
-
"type": "float",
|
4610
|
-
"id": 6,
|
5665
|
+
"id": 3,
|
4611
5666
|
"options": {
|
4612
|
-
"
|
5667
|
+
"(google.api.field_behavior)": "REQUIRED"
|
4613
5668
|
}
|
4614
5669
|
}
|
4615
5670
|
}
|
4616
5671
|
},
|
4617
|
-
"
|
4618
|
-
"oneofs": {
|
4619
|
-
"documentDescriptor": {
|
4620
|
-
"oneof": [
|
4621
|
-
"id",
|
4622
|
-
"name",
|
4623
|
-
"uri"
|
4624
|
-
]
|
4625
|
-
},
|
4626
|
-
"_quantity": {
|
4627
|
-
"oneof": [
|
4628
|
-
"quantity"
|
4629
|
-
]
|
4630
|
-
}
|
4631
|
-
},
|
5672
|
+
"CreateEngineMetadata": {
|
4632
5673
|
"fields": {
|
4633
|
-
"
|
4634
|
-
"type": "
|
5674
|
+
"createTime": {
|
5675
|
+
"type": "google.protobuf.Timestamp",
|
4635
5676
|
"id": 1
|
4636
5677
|
},
|
4637
|
-
"
|
4638
|
-
"type": "
|
4639
|
-
"id": 2
|
4640
|
-
"options": {
|
4641
|
-
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Document"
|
4642
|
-
}
|
4643
|
-
},
|
4644
|
-
"uri": {
|
4645
|
-
"type": "string",
|
4646
|
-
"id": 6
|
4647
|
-
},
|
4648
|
-
"quantity": {
|
4649
|
-
"type": "int32",
|
4650
|
-
"id": 3,
|
4651
|
-
"options": {
|
4652
|
-
"proto3_optional": true
|
4653
|
-
}
|
4654
|
-
},
|
4655
|
-
"promotionIds": {
|
4656
|
-
"rule": "repeated",
|
4657
|
-
"type": "string",
|
4658
|
-
"id": 4
|
5678
|
+
"updateTime": {
|
5679
|
+
"type": "google.protobuf.Timestamp",
|
5680
|
+
"id": 2
|
4659
5681
|
}
|
4660
5682
|
}
|
4661
5683
|
},
|
4662
|
-
"
|
4663
|
-
"oneofs": {
|
4664
|
-
"_panelPosition": {
|
4665
|
-
"oneof": [
|
4666
|
-
"panelPosition"
|
4667
|
-
]
|
4668
|
-
},
|
4669
|
-
"_totalPanels": {
|
4670
|
-
"oneof": [
|
4671
|
-
"totalPanels"
|
4672
|
-
]
|
4673
|
-
}
|
4674
|
-
},
|
5684
|
+
"DeleteEngineRequest": {
|
4675
5685
|
"fields": {
|
4676
|
-
"
|
4677
|
-
"type": "string",
|
4678
|
-
"id": 2,
|
4679
|
-
"options": {
|
4680
|
-
"(google.api.field_behavior)": "REQUIRED"
|
4681
|
-
}
|
4682
|
-
},
|
4683
|
-
"displayName": {
|
5686
|
+
"name": {
|
4684
5687
|
"type": "string",
|
4685
|
-
"id":
|
4686
|
-
},
|
4687
|
-
"panelPosition": {
|
4688
|
-
"type": "int32",
|
4689
|
-
"id": 4,
|
4690
|
-
"options": {
|
4691
|
-
"proto3_optional": true
|
4692
|
-
}
|
4693
|
-
},
|
4694
|
-
"totalPanels": {
|
4695
|
-
"type": "int32",
|
4696
|
-
"id": 5,
|
5688
|
+
"id": 1,
|
4697
5689
|
"options": {
|
4698
|
-
"
|
5690
|
+
"(google.api.field_behavior)": "REQUIRED",
|
5691
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Engine"
|
4699
5692
|
}
|
4700
5693
|
}
|
4701
5694
|
}
|
4702
5695
|
},
|
4703
|
-
"
|
4704
|
-
"oneofs": {
|
4705
|
-
"_mediaProgressPercentage": {
|
4706
|
-
"oneof": [
|
4707
|
-
"mediaProgressPercentage"
|
4708
|
-
]
|
4709
|
-
}
|
4710
|
-
},
|
5696
|
+
"DeleteEngineMetadata": {
|
4711
5697
|
"fields": {
|
4712
|
-
"
|
4713
|
-
"type": "google.protobuf.
|
5698
|
+
"createTime": {
|
5699
|
+
"type": "google.protobuf.Timestamp",
|
4714
5700
|
"id": 1
|
4715
5701
|
},
|
4716
|
-
"
|
4717
|
-
"type": "
|
4718
|
-
"id": 2
|
5702
|
+
"updateTime": {
|
5703
|
+
"type": "google.protobuf.Timestamp",
|
5704
|
+
"id": 2
|
5705
|
+
}
|
5706
|
+
}
|
5707
|
+
},
|
5708
|
+
"GetEngineRequest": {
|
5709
|
+
"fields": {
|
5710
|
+
"name": {
|
5711
|
+
"type": "string",
|
5712
|
+
"id": 1,
|
4719
5713
|
"options": {
|
4720
|
-
"
|
5714
|
+
"(google.api.field_behavior)": "REQUIRED",
|
5715
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Engine"
|
4721
5716
|
}
|
4722
5717
|
}
|
4723
5718
|
}
|
4724
5719
|
},
|
4725
|
-
"
|
5720
|
+
"ListEnginesRequest": {
|
4726
5721
|
"fields": {
|
4727
5722
|
"parent": {
|
4728
5723
|
"type": "string",
|
4729
5724
|
"id": 1,
|
4730
5725
|
"options": {
|
4731
5726
|
"(google.api.field_behavior)": "REQUIRED",
|
4732
|
-
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/
|
5727
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Collection"
|
4733
5728
|
}
|
4734
5729
|
},
|
4735
|
-
"
|
4736
|
-
"type": "
|
5730
|
+
"pageSize": {
|
5731
|
+
"type": "int32",
|
4737
5732
|
"id": 2,
|
4738
5733
|
"options": {
|
4739
|
-
"(google.api.field_behavior)": "
|
5734
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
4740
5735
|
}
|
4741
5736
|
},
|
4742
|
-
"
|
4743
|
-
"type": "
|
4744
|
-
"id": 3
|
5737
|
+
"pageToken": {
|
5738
|
+
"type": "string",
|
5739
|
+
"id": 3,
|
5740
|
+
"options": {
|
5741
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
5742
|
+
}
|
5743
|
+
},
|
5744
|
+
"filter": {
|
5745
|
+
"type": "string",
|
5746
|
+
"id": 4,
|
5747
|
+
"options": {
|
5748
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
5749
|
+
}
|
4745
5750
|
}
|
4746
5751
|
}
|
4747
5752
|
},
|
4748
|
-
"
|
5753
|
+
"ListEnginesResponse": {
|
4749
5754
|
"fields": {
|
4750
|
-
"
|
4751
|
-
"
|
5755
|
+
"engines": {
|
5756
|
+
"rule": "repeated",
|
5757
|
+
"type": "Engine",
|
4752
5758
|
"id": 1
|
5759
|
+
},
|
5760
|
+
"nextPageToken": {
|
5761
|
+
"type": "string",
|
5762
|
+
"id": 2
|
4753
5763
|
}
|
4754
5764
|
}
|
4755
5765
|
},
|
4756
|
-
"
|
5766
|
+
"UpdateEngineRequest": {
|
4757
5767
|
"fields": {
|
4758
|
-
"
|
4759
|
-
"type": "
|
4760
|
-
"id": 1
|
5768
|
+
"engine": {
|
5769
|
+
"type": "Engine",
|
5770
|
+
"id": 1,
|
5771
|
+
"options": {
|
5772
|
+
"(google.api.field_behavior)": "REQUIRED"
|
5773
|
+
}
|
4761
5774
|
},
|
4762
|
-
"
|
4763
|
-
"type": "google.protobuf.
|
5775
|
+
"updateMask": {
|
5776
|
+
"type": "google.protobuf.FieldMask",
|
4764
5777
|
"id": 2
|
4765
|
-
},
|
4766
|
-
"successCount": {
|
4767
|
-
"type": "int64",
|
4768
|
-
"id": 3
|
4769
|
-
},
|
4770
|
-
"failureCount": {
|
4771
|
-
"type": "int64",
|
4772
|
-
"id": 4
|
4773
5778
|
}
|
4774
5779
|
}
|
4775
5780
|
},
|
4776
|
-
"
|
5781
|
+
"PauseEngineRequest": {
|
4777
5782
|
"fields": {
|
4778
|
-
"
|
5783
|
+
"name": {
|
4779
5784
|
"type": "string",
|
4780
5785
|
"id": 1,
|
4781
5786
|
"options": {
|
4782
5787
|
"(google.api.field_behavior)": "REQUIRED",
|
4783
|
-
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/
|
5788
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Engine"
|
4784
5789
|
}
|
4785
|
-
}
|
4786
|
-
|
5790
|
+
}
|
5791
|
+
}
|
5792
|
+
},
|
5793
|
+
"ResumeEngineRequest": {
|
5794
|
+
"fields": {
|
5795
|
+
"name": {
|
4787
5796
|
"type": "string",
|
4788
|
-
"id":
|
5797
|
+
"id": 1,
|
4789
5798
|
"options": {
|
4790
|
-
"(google.api.field_behavior)": "REQUIRED"
|
5799
|
+
"(google.api.field_behavior)": "REQUIRED",
|
5800
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Engine"
|
4791
5801
|
}
|
4792
|
-
},
|
4793
|
-
"force": {
|
4794
|
-
"type": "bool",
|
4795
|
-
"id": 3
|
4796
5802
|
}
|
4797
5803
|
}
|
4798
5804
|
},
|
4799
|
-
"
|
5805
|
+
"TuneEngineRequest": {
|
4800
5806
|
"fields": {
|
4801
|
-
"
|
4802
|
-
"type": "int64",
|
4803
|
-
"id": 1
|
4804
|
-
},
|
4805
|
-
"purgeSample": {
|
4806
|
-
"rule": "repeated",
|
5807
|
+
"name": {
|
4807
5808
|
"type": "string",
|
4808
|
-
"id":
|
5809
|
+
"id": 1,
|
4809
5810
|
"options": {
|
4810
|
-
"(google.api.
|
5811
|
+
"(google.api.field_behavior)": "REQUIRED",
|
5812
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Engine"
|
4811
5813
|
}
|
4812
5814
|
}
|
4813
5815
|
}
|
4814
5816
|
},
|
4815
|
-
"
|
5817
|
+
"TuneEngineMetadata": {
|
4816
5818
|
"fields": {
|
4817
|
-
"
|
4818
|
-
"type": "
|
4819
|
-
"id": 1
|
4820
|
-
|
4821
|
-
|
4822
|
-
|
4823
|
-
|
4824
|
-
},
|
4825
|
-
"successCount": {
|
4826
|
-
"type": "int64",
|
4827
|
-
"id": 3
|
4828
|
-
},
|
4829
|
-
"failureCount": {
|
4830
|
-
"type": "int64",
|
4831
|
-
"id": 4
|
5819
|
+
"engine": {
|
5820
|
+
"type": "string",
|
5821
|
+
"id": 1,
|
5822
|
+
"options": {
|
5823
|
+
"(google.api.field_behavior)": "REQUIRED",
|
5824
|
+
"(google.api.resource_reference).type": "discoveryengine.googleapis.com/Engine"
|
5825
|
+
}
|
4832
5826
|
}
|
4833
5827
|
}
|
4834
5828
|
},
|
5829
|
+
"TuneEngineResponse": {
|
5830
|
+
"fields": {}
|
5831
|
+
},
|
4835
5832
|
"RecommendationService": {
|
4836
5833
|
"options": {
|
4837
5834
|
"(google.api.default_host)": "discoveryengine.googleapis.com",
|