Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
RankService
-----------------------------

.. automodule:: google.cloud.discoveryengine_v1alpha.services.rank_service
:members:
:inherited-members:
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Services for Google Cloud Discoveryengine v1alpha API
document_service
engine_service
estimate_billing_service
rank_service
recommendation_service
schema_service
search_service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
EstimateBillingServiceAsyncClient,
EstimateBillingServiceClient,
)
from .services.rank_service import RankServiceAsyncClient, RankServiceClient
from .services.recommendation_service import (
RecommendationServiceAsyncClient,
RecommendationServiceClient,
Expand Down Expand Up @@ -114,12 +115,13 @@
UpdateDataStoreRequest,
UpdateDocumentProcessingConfigRequest,
)
from .types.document import Document
from .types.document import Document, ProcessedDocument
from .types.document_processing_config import DocumentProcessingConfig
from .types.document_service import (
CreateDocumentRequest,
DeleteDocumentRequest,
GetDocumentRequest,
GetProcessedDocumentRequest,
ListDocumentsRequest,
ListDocumentsResponse,
UpdateDocumentRequest,
Expand Down Expand Up @@ -147,7 +149,14 @@
)
from .types.import_config import (
BigQuerySource,
BigtableOptions,
BigtableSource,
CloudSqlSource,
FhirStoreSource,
FirestoreSource,
GcsSource,
ImportCompletionSuggestionsMetadata,
ImportCompletionSuggestionsResponse,
ImportDocumentsMetadata,
ImportDocumentsRequest,
ImportDocumentsResponse,
Expand All @@ -158,6 +167,7 @@
ImportUserEventsMetadata,
ImportUserEventsRequest,
ImportUserEventsResponse,
SpannerSource,
)
from .types.purge_config import (
PurgeDocumentsMetadata,
Expand All @@ -171,6 +181,7 @@
PurgeUserEventsRequest,
PurgeUserEventsResponse,
)
from .types.rank_service import RankingRecord, RankRequest, RankResponse
from .types.recommendation_service import RecommendRequest, RecommendResponse
from .types.schema import FieldConfig, Schema
from .types.schema_service import (
Expand Down Expand Up @@ -248,6 +259,7 @@
"DocumentServiceAsyncClient",
"EngineServiceAsyncClient",
"EstimateBillingServiceAsyncClient",
"RankServiceAsyncClient",
"RecommendationServiceAsyncClient",
"SchemaServiceAsyncClient",
"SearchServiceAsyncClient",
Expand All @@ -264,8 +276,11 @@
"BatchVerifyTargetSitesRequest",
"BatchVerifyTargetSitesResponse",
"BigQuerySource",
"BigtableOptions",
"BigtableSource",
"Chunk",
"ChunkServiceClient",
"CloudSqlSource",
"CollectUserEventRequest",
"CompleteQueryRequest",
"CompleteQueryResponse",
Expand Down Expand Up @@ -321,7 +336,9 @@
"EstimateDataSizeResponse",
"FetchDomainVerificationStatusRequest",
"FetchDomainVerificationStatusResponse",
"FhirStoreSource",
"FieldConfig",
"FirestoreSource",
"GcsSource",
"GetAclConfigRequest",
"GetChunkRequest",
Expand All @@ -330,12 +347,15 @@
"GetDocumentProcessingConfigRequest",
"GetDocumentRequest",
"GetEngineRequest",
"GetProcessedDocumentRequest",
"GetSchemaRequest",
"GetServingConfigRequest",
"GetSiteSearchEngineRequest",
"GetTargetSiteRequest",
"GuidedSearchSpec",
"IdpConfig",
"ImportCompletionSuggestionsMetadata",
"ImportCompletionSuggestionsResponse",
"ImportDocumentsMetadata",
"ImportDocumentsRequest",
"ImportDocumentsResponse",
Expand Down Expand Up @@ -369,6 +389,7 @@
"PanelInfo",
"PauseEngineRequest",
"Principal",
"ProcessedDocument",
"PurgeDocumentsMetadata",
"PurgeDocumentsRequest",
"PurgeDocumentsResponse",
Expand All @@ -379,6 +400,10 @@
"PurgeUserEventsMetadata",
"PurgeUserEventsRequest",
"PurgeUserEventsResponse",
"RankRequest",
"RankResponse",
"RankServiceClient",
"RankingRecord",
"RecommendRequest",
"RecommendResponse",
"RecommendationServiceClient",
Expand All @@ -402,6 +427,7 @@
"SiteSearchEngineServiceClient",
"SiteVerificationInfo",
"SolutionType",
"SpannerSource",
"SuggestionDenyListEntry",
"TargetSite",
"TextInput",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,11 @@
"get_document"
]
},
"GetProcessedDocument": {
"methods": [
"get_processed_document"
]
},
"ImportDocuments": {
"methods": [
"import_documents"
Expand Down Expand Up @@ -460,6 +465,11 @@
"get_document"
]
},
"GetProcessedDocument": {
"methods": [
"get_processed_document"
]
},
"ImportDocuments": {
"methods": [
"import_documents"
Expand Down Expand Up @@ -500,6 +510,11 @@
"get_document"
]
},
"GetProcessedDocument": {
"methods": [
"get_processed_document"
]
},
"ImportDocuments": {
"methods": [
"import_documents"
Expand Down Expand Up @@ -697,6 +712,40 @@
}
}
},
"RankService": {
"clients": {
"grpc": {
"libraryClient": "RankServiceClient",
"rpcs": {
"Rank": {
"methods": [
"rank"
]
}
}
},
"grpc-async": {
"libraryClient": "RankServiceAsyncClient",
"rpcs": {
"Rank": {
"methods": [
"rank"
]
}
}
},
"rest": {
"libraryClient": "RankServiceClient",
"rpcs": {
"Rank": {
"methods": [
"rank"
]
}
}
}
}
},
"RecommendationService": {
"clients": {
"grpc": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,10 @@ def __call__(
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/dataStores/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/evaluations/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/operations/*}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,10 @@ def __call__(
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/dataStores/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/evaluations/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/operations/*}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,10 @@ def operations_client(self) -> operations_v1.AbstractOperationsClient:
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/dataStores/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/evaluations/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/operations/*}",
Expand Down Expand Up @@ -885,6 +889,10 @@ def __call__(
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/dataStores/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/evaluations/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/operations/*}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,6 +1163,10 @@ def __call__(
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/dataStores/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/evaluations/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/operations/*}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,10 @@ def operations_client(self) -> operations_v1.AbstractOperationsClient:
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/dataStores/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/evaluations/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/operations/*}",
Expand Down Expand Up @@ -1450,6 +1454,10 @@ def __call__(
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/dataStores/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/evaluations/*/operations/*}",
},
{
"method": "get",
"uri": "/v1alpha/{name=projects/*/locations/*/operations/*}",
Expand Down
Loading