Reference documentation and code samples for the Dialogflow CX V3 API class Google::Cloud::Dialogflow::CX::V3::Sessions::Rest::Client.
REST client for the Sessions service.
A session represents an interaction with a user. You retrieve user input and pass it to the DetectIntent method to determine user intent and respond.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::Configuration
Configure the Sessions Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all Sessions clients ::Google::Cloud::Dialogflow::CX::V3::Sessions::Rest::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::Configuration
Configure the Sessions Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#detect_intent
def detect_intent(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::DetectIntentResponse
def detect_intent(session: nil, query_params: nil, query_input: nil, output_audio_config: nil) -> ::Google::Cloud::Dialogflow::CX::V3::DetectIntentResponse
Processes a natural language query and returns structured, actionable data as a result. This method is not idempotent, because it may cause session entity types to be updated, which in turn might affect results of future queries.
Note: Always use agent versions for production traffic. See Versions and environments.
def detect_intent(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::DetectIntentResponse
detect_intent
via a request object, either of type
DetectIntentRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::DetectIntentRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def detect_intent(session: nil, query_params: nil, query_input: nil, output_audio_config: nil) -> ::Google::Cloud::Dialogflow::CX::V3::DetectIntentResponse
detect_intent
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
session (::String) — Required. The name of the session this query is sent to.
Format:
projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID>
orprojects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>
. IfEnvironment ID
is not specified, we assume default 'draft' environment. It's up to the API caller to choose an appropriateSession ID
. It can be a random number or some type of session identifiers (preferably hashed). The length of theSession ID
must not exceed 36 characters.For more information, see the sessions guide.
Note: Always use agent versions for production traffic. See Versions and environments.
- query_params (::Google::Cloud::Dialogflow::CX::V3::QueryParameters, ::Hash) — The parameters of this query.
- query_input (::Google::Cloud::Dialogflow::CX::V3::QueryInput, ::Hash) — Required. The input specification.
- output_audio_config (::Google::Cloud::Dialogflow::CX::V3::OutputAudioConfig, ::Hash) — Instructs the speech synthesizer how to generate the output audio.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Dialogflow::CX::V3::DetectIntentResponse)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::Sessions::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::DetectIntentRequest.new # Call the detect_intent method. result = client.detect_intent request # The returned object is of type Google::Cloud::Dialogflow::CX::V3::DetectIntentResponse. p result
#fulfill_intent
def fulfill_intent(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::FulfillIntentResponse
def fulfill_intent(match_intent_request: nil, match: nil, output_audio_config: nil) -> ::Google::Cloud::Dialogflow::CX::V3::FulfillIntentResponse
Fulfills a matched intent returned by MatchIntent. Must be called after MatchIntent, with input from MatchIntentResponse. Otherwise, the behavior is undefined.
def fulfill_intent(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::FulfillIntentResponse
fulfill_intent
via a request object, either of type
FulfillIntentRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::FulfillIntentRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def fulfill_intent(match_intent_request: nil, match: nil, output_audio_config: nil) -> ::Google::Cloud::Dialogflow::CX::V3::FulfillIntentResponse
fulfill_intent
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- match_intent_request (::Google::Cloud::Dialogflow::CX::V3::MatchIntentRequest, ::Hash) — Must be same as the corresponding MatchIntent request, otherwise the behavior is undefined.
- match (::Google::Cloud::Dialogflow::CX::V3::Match, ::Hash) — The matched intent/event to fulfill.
- output_audio_config (::Google::Cloud::Dialogflow::CX::V3::OutputAudioConfig, ::Hash) — Instructs the speech synthesizer how to generate output audio.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Dialogflow::CX::V3::FulfillIntentResponse)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::Sessions::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::FulfillIntentRequest.new # Call the fulfill_intent method. result = client.fulfill_intent request # The returned object is of type Google::Cloud::Dialogflow::CX::V3::FulfillIntentResponse. p result
#initialize
def initialize() { |config| ... } -> Client
Create a new Sessions REST client object.
- (config) — Configure the Sessions client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::Dialogflow::CX::V3::Sessions::Rest::Client.new # Create a client using a custom configuration client = ::Google::Cloud::Dialogflow::CX::V3::Sessions::Rest::Client.new do |config| config.timeout = 10.0 end
#location_client
def location_client() -> Google::Cloud::Location::Locations::Rest::Client
Get the associated client for mix-in of the Locations.
- (Google::Cloud::Location::Locations::Rest::Client)
#match_intent
def match_intent(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::MatchIntentResponse
def match_intent(session: nil, query_params: nil, query_input: nil, persist_parameter_changes: nil) -> ::Google::Cloud::Dialogflow::CX::V3::MatchIntentResponse
Returns preliminary intent match results, doesn't change the session status.
def match_intent(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::MatchIntentResponse
match_intent
via a request object, either of type
MatchIntentRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::MatchIntentRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def match_intent(session: nil, query_params: nil, query_input: nil, persist_parameter_changes: nil) -> ::Google::Cloud::Dialogflow::CX::V3::MatchIntentResponse
match_intent
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
session (::String) — Required. The name of the session this query is sent to.
Format:
projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID>
orprojects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>
. IfEnvironment ID
is not specified, we assume default 'draft' environment. It's up to the API caller to choose an appropriateSession ID
. It can be a random number or some type of session identifiers (preferably hashed). The length of theSession ID
must not exceed 36 characters.For more information, see the sessions guide.
- query_params (::Google::Cloud::Dialogflow::CX::V3::QueryParameters, ::Hash) — The parameters of this query.
- query_input (::Google::Cloud::Dialogflow::CX::V3::QueryInput, ::Hash) — Required. The input specification.
-
persist_parameter_changes (::Boolean) — Persist session parameter changes from
query_params
.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Dialogflow::CX::V3::MatchIntentResponse)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::Sessions::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::MatchIntentRequest.new # Call the match_intent method. result = client.match_intent request # The returned object is of type Google::Cloud::Dialogflow::CX::V3::MatchIntentResponse. p result
#submit_answer_feedback
def submit_answer_feedback(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::AnswerFeedback
def submit_answer_feedback(session: nil, response_id: nil, answer_feedback: nil, update_mask: nil) -> ::Google::Cloud::Dialogflow::CX::V3::AnswerFeedback
Updates the feedback received from the user for a single turn of the bot response.
def submit_answer_feedback(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::AnswerFeedback
submit_answer_feedback
via a request object, either of type
Google::Cloud::Dialogflow::CX::V3::SubmitAnswerFeedbackRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::SubmitAnswerFeedbackRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def submit_answer_feedback(session: nil, response_id: nil, answer_feedback: nil, update_mask: nil) -> ::Google::Cloud::Dialogflow::CX::V3::AnswerFeedback
submit_answer_feedback
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- session (::String) — Required. The name of the session the feedback was sent to.
- response_id (::String) — Required. ID of the response to update its feedback. This is the same as DetectIntentResponse.response_id.
- answer_feedback (::Google::Cloud::Dialogflow::CX::V3::AnswerFeedback, ::Hash) — Required. Feedback provided for a bot answer.
- update_mask (::Google::Protobuf::FieldMask, ::Hash) — Optional. The mask to control which fields to update. If the mask is not present, all fields will be updated.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Dialogflow::CX::V3::AnswerFeedback)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::Sessions::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::SubmitAnswerFeedbackRequest.new # Call the submit_answer_feedback method. result = client.submit_answer_feedback request # The returned object is of type Google::Cloud::Dialogflow::CX::V3::AnswerFeedback. p result
#universe_domain
def universe_domain() -> String
The effective universe domain
- (String)