QuestionServiceAsyncClient(*, credentials: google.auth.credentials.Credentials = None, transport: Union[str, google.cloud.dataqna_v1alpha.services.question_service.transports.base.QuestionServiceTransport] = 'grpc_asyncio', client_options: <module 'google.api_core.client_options' from '/workspace/python-data-qna/.nox/docfx/lib/python3.9/site-packages/google/api_core/client_options.py'> = None, client_info: google.api_core.gapic_v1.client_info.ClientInfo = <google.api_core.gapic_v1.client_info.ClientInfo object>)
Service to interpret natural language queries. The service allows to
create Question
resources that are interpreted and are filled
with one or more interpretations if the question could be
interpreted. Once a Question
resource is created and has at
least one interpretation, an interpretation can be chosen for
execution, which triggers a query to the backend (for BigQuery, it
will create a job). Upon successful execution of that
interpretation, backend specific information will be returned so
that the client can retrieve the results from the backend.
The Question
resources are named
projects/*/locations/*/questions/*
.
The Question
resource has a singletion sub-resource
UserFeedback
named
projects/*/locations/*/questions/*/userFeedback
, which allows
access to user feedback.
Properties
transport
Return the transport used by the client instance.
Returns | |
---|---|
Type | Description |
QuestionServiceTransport | The transport used by the client instance. |
Methods
QuestionServiceAsyncClient
QuestionServiceAsyncClient(*, credentials: google.auth.credentials.Credentials = None, transport: Union[str, google.cloud.dataqna_v1alpha.services.question_service.transports.base.QuestionServiceTransport] = 'grpc_asyncio', client_options: <module 'google.api_core.client_options' from '/workspace/python-data-qna/.nox/docfx/lib/python3.9/site-packages/google/api_core/client_options.py'> = None, client_info: google.api_core.gapic_v1.client_info.ClientInfo = <google.api_core.gapic_v1.client_info.ClientInfo object>)
Instantiate the question service client.
Parameters | |
---|---|
Name | Description |
credentials |
Optional[google.auth.credentials.Credentials]
The authorization credentials to attach to requests. These credentials identify the application to the service; if none are specified, the client will attempt to ascertain the credentials from the environment. |
transport |
Union[str,
The transport to use. If set to None, a transport is chosen automatically. |
client_options |
ClientOptions
Custom options for the client. It won't take effect if a |
Exceptions | |
---|---|
Type | Description |
google.auth.exceptions.MutualTlsChannelError | If mutual TLS transport creation failed for any reason. |
common_billing_account_path
common_billing_account_path(billing_account: str)
Return a fully-qualified billing_account string.
common_folder_path
common_folder_path(folder: str)
Return a fully-qualified folder string.
common_location_path
common_location_path(project: str, location: str)
Return a fully-qualified location string.
common_organization_path
common_organization_path(organization: str)
Return a fully-qualified organization string.
common_project_path
common_project_path(project: str)
Return a fully-qualified project string.
create_question
create_question(request: Optional[google.cloud.dataqna_v1alpha.types.question_service.CreateQuestionRequest] = None, *, parent: Optional[str] = None, question: Optional[google.cloud.dataqna_v1alpha.types.question.Question] = None, retry: google.api_core.retry.Retry = <_MethodDefault._DEFAULT_VALUE: <object object>>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())
Creates a question.
Parameters | |
---|---|
Name | Description |
request |
The request object. Request to create a question resource. |
parent |
Required. The name of the project this data source reference belongs to. Example: |
question |
Required. The question to create. This corresponds to the |
retry |
google.api_core.retry.Retry
Designation of what errors, if any, should be retried. |
timeout |
float
The timeout for this request. |
metadata |
Sequence[Tuple[str, str]]
Strings which should be sent along with the request as metadata. |
Returns | |
---|---|
Type | Description |
| The question resource represents a natural language query, its settings, understanding generated by the system, and answer retrieval status. A question cannot be modified. |
execute_question
execute_question(request: Optional[google.cloud.dataqna_v1alpha.types.question_service.ExecuteQuestionRequest] = None, *, name: Optional[str] = None, interpretation_index: Optional[int] = None, retry: google.api_core.retry.Retry = <_MethodDefault._DEFAULT_VALUE: <object object>>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())
Executes an interpretation.
Parameters | |
---|---|
Name | Description |
request |
The request object. Request to execute an interpretation. |
name |
Required. The unique identifier for the question. Example: |
interpretation_index |
Required. Index of the interpretation to execute. This corresponds to the |
retry |
google.api_core.retry.Retry
Designation of what errors, if any, should be retried. |
timeout |
float
The timeout for this request. |
metadata |
Sequence[Tuple[str, str]]
Strings which should be sent along with the request as metadata. |
Returns | |
---|---|
Type | Description |
| The question resource represents a natural language query, its settings, understanding generated by the system, and answer retrieval status. A question cannot be modified. |
from_service_account_file
from_service_account_file(filename: str, *args, **kwargs)
Creates an instance of this client using the provided credentials file.
Parameter | |
---|---|
Name | Description |
filename |
str
The path to the service account private key json file. |
Returns | |
---|---|
Type | Description |
{@api.name} | The constructed client. |
from_service_account_json
from_service_account_json(filename: str, *args, **kwargs)
Creates an instance of this client using the provided credentials file.
Parameter | |
---|---|
Name | Description |
filename |
str
The path to the service account private key json file. |
Returns | |
---|---|
Type | Description |
{@api.name} | The constructed client. |
get_question
get_question(request: Optional[google.cloud.dataqna_v1alpha.types.question_service.GetQuestionRequest] = None, *, name: Optional[str] = None, retry: google.api_core.retry.Retry = <_MethodDefault._DEFAULT_VALUE: <object object>>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())
Gets a previously created question.
Parameters | |
---|---|
Name | Description |
request |
The request object. A request to get a previously created question. |
name |
Required. The unique identifier for the question. Example: |
retry |
google.api_core.retry.Retry
Designation of what errors, if any, should be retried. |
timeout |
float
The timeout for this request. |
metadata |
Sequence[Tuple[str, str]]
Strings which should be sent along with the request as metadata. |
Returns | |
---|---|
Type | Description |
| The question resource represents a natural language query, its settings, understanding generated by the system, and answer retrieval status. A question cannot be modified. |
get_transport_class
get_transport_class()
Return an appropriate transport class.
get_user_feedback
get_user_feedback(request: Optional[google.cloud.dataqna_v1alpha.types.question_service.GetUserFeedbackRequest] = None, *, name: Optional[str] = None, retry: google.api_core.retry.Retry = <_MethodDefault._DEFAULT_VALUE: <object object>>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())
Gets previously created user feedback.
Parameters | |
---|---|
Name | Description |
request |
The request object. Request to get user feedback. |
name |
Required. The unique identifier for the user feedback. User feedback is a singleton resource on a Question. Example: |
retry |
google.api_core.retry.Retry
Designation of what errors, if any, should be retried. |
timeout |
float
The timeout for this request. |
metadata |
Sequence[Tuple[str, str]]
Strings which should be sent along with the request as metadata. |
Returns | |
---|---|
Type | Description |
| Feedback provided by a user. |
parse_common_billing_account_path
parse_common_billing_account_path(path: str)
Parse a billing_account path into its component segments.
parse_common_folder_path
parse_common_folder_path(path: str)
Parse a folder path into its component segments.
parse_common_location_path
parse_common_location_path(path: str)
Parse a location path into its component segments.
parse_common_organization_path
parse_common_organization_path(path: str)
Parse a organization path into its component segments.
parse_common_project_path
parse_common_project_path(path: str)
Parse a project path into its component segments.
parse_question_path
parse_question_path(path: str)
Parse a question path into its component segments.
parse_user_feedback_path
parse_user_feedback_path(path: str)
Parse a user_feedback path into its component segments.
question_path
question_path(project: str, location: str, question: str)
Return a fully-qualified question string.
update_user_feedback
update_user_feedback(request: Optional[google.cloud.dataqna_v1alpha.types.question_service.UpdateUserFeedbackRequest] = None, *, user_feedback: Optional[google.cloud.dataqna_v1alpha.types.user_feedback.UserFeedback] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: google.api_core.retry.Retry = <_MethodDefault._DEFAULT_VALUE: <object object>>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())
Updates user feedback. This creates user feedback if there was none before (upsert).
Parameters | |
---|---|
Name | Description |
request |
The request object. Request to updates user feedback. |
user_feedback |
Required. The user feedback to update. This can be called even if there is no user feedback so far. The feedback's name field is used to identify the user feedback (and the corresponding question) to update. This corresponds to the |
update_mask |
The list of fields to be updated. This corresponds to the |
retry |
google.api_core.retry.Retry
Designation of what errors, if any, should be retried. |
timeout |
float
The timeout for this request. |
metadata |
Sequence[Tuple[str, str]]
Strings which should be sent along with the request as metadata. |
Returns | |
---|---|
Type | Description |
| Feedback provided by a user. |
user_feedback_path
user_feedback_path(project: str, location: str, question: str)
Return a fully-qualified user_feedback string.