google-apis-dialogflow_v2 0.90.0 → 0.91.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/dialogflow_v2/classes.rb +28 -27
- data/lib/google/apis/dialogflow_v2/gem_version.rb +2 -2
- data/lib/google/apis/dialogflow_v2/service.rb +14 -24
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 53ec49226371bc55b92842a255d88e4e3e40cc5417aae8993315323851ca4f44
|
|
4
|
+
data.tar.gz: 2ab66ff9fc53a6719b5147381f585969d33fc2f742fb9ee43e3a5be00e13303f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15373b4e71fcc73ee684e4cff533ca9459434b4d59cb7931d7146e43f99a1f741db12a650e7ad22ffb4462c56d738d41f672260a18b87fe23b91ac3734cf3048
|
|
7
|
+
data.tar.gz: 84ba32b20611c4568d04d9e1cf9ddd46bc5e45354458d75defa0f0e00b6524274244305e46f5e0edf7f2026a2d7355616779e10b98b4704f7894b5b3b13f759b
|
data/CHANGELOG.md
CHANGED
|
@@ -8964,9 +8964,9 @@ module Google
|
|
|
8964
8964
|
# @return [String]
|
|
8965
8965
|
attr_accessor :conversation_profile
|
|
8966
8966
|
|
|
8967
|
-
# The stage of a conversation. It indicates whether the virtual agent
|
|
8968
|
-
# agent is handling the conversation. If the conversation is created
|
|
8969
|
-
# conversation profile that has Dialogflow config set, defaults to
|
|
8967
|
+
# Optional. The stage of a conversation. It indicates whether the virtual agent
|
|
8968
|
+
# or a human agent is handling the conversation. If the conversation is created
|
|
8969
|
+
# with the conversation profile that has Dialogflow config set, defaults to
|
|
8970
8970
|
# ConversationStage.VIRTUAL_AGENT_STAGE; Otherwise, defaults to
|
|
8971
8971
|
# ConversationStage.HUMAN_ASSIST_STAGE. If the conversation is created with the
|
|
8972
8972
|
# conversation profile that has Dialogflow config set but explicitly sets
|
|
@@ -8987,8 +8987,8 @@ module Google
|
|
|
8987
8987
|
# @return [String]
|
|
8988
8988
|
attr_accessor :lifecycle_state
|
|
8989
8989
|
|
|
8990
|
-
# Output only. The unique identifier of this conversation. Format: `
|
|
8991
|
-
# locations//conversations/`.
|
|
8990
|
+
# Output only. Identifier. The unique identifier of this conversation. Format: `
|
|
8991
|
+
# projects//locations//conversations/`.
|
|
8992
8992
|
# Corresponds to the JSON property `name`
|
|
8993
8993
|
# @return [String]
|
|
8994
8994
|
attr_accessor :name
|
|
@@ -10735,15 +10735,16 @@ module Google
|
|
|
10735
10735
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationProfile]
|
|
10736
10736
|
attr_accessor :conversation_profile
|
|
10737
10737
|
|
|
10738
|
-
# The name of the latest conversation message used as context for
|
|
10739
|
-
# Summary. If empty, the latest message of the conversation will be
|
|
10740
|
-
# format is specific to the user and the names of the messages
|
|
10738
|
+
# Optional. The name of the latest conversation message used as context for
|
|
10739
|
+
# generating a Summary. If empty, the latest message of the conversation will be
|
|
10740
|
+
# used. The format is specific to the user and the names of the messages
|
|
10741
|
+
# provided.
|
|
10741
10742
|
# Corresponds to the JSON property `latestMessage`
|
|
10742
10743
|
# @return [String]
|
|
10743
10744
|
attr_accessor :latest_message
|
|
10744
10745
|
|
|
10745
|
-
# Max number of messages prior to and including [latest_message] to
|
|
10746
|
-
# context when compiling the suggestion. By default 500 and at most 1000.
|
|
10746
|
+
# Optional. Max number of messages prior to and including [latest_message] to
|
|
10747
|
+
# use as context when compiling the suggestion. By default 500 and at most 1000.
|
|
10747
10748
|
# Corresponds to the JSON property `maxContextSize`
|
|
10748
10749
|
# @return [Fixnum]
|
|
10749
10750
|
attr_accessor :max_context_size
|
|
@@ -14787,8 +14788,8 @@ module Google
|
|
|
14787
14788
|
class GoogleCloudDialogflowV2SearchKnowledgeRequest
|
|
14788
14789
|
include Google::Apis::Core::Hashable
|
|
14789
14790
|
|
|
14790
|
-
# The conversation (between human agent and end user) where the search
|
|
14791
|
-
# is triggered. Format: `projects//locations//conversations/`.
|
|
14791
|
+
# Optional. The conversation (between human agent and end user) where the search
|
|
14792
|
+
# request is triggered. Format: `projects//locations//conversations/`.
|
|
14792
14793
|
# Corresponds to the JSON property `conversation`
|
|
14793
14794
|
# @return [String]
|
|
14794
14795
|
attr_accessor :conversation
|
|
@@ -14799,14 +14800,14 @@ module Google
|
|
|
14799
14800
|
# @return [String]
|
|
14800
14801
|
attr_accessor :conversation_profile
|
|
14801
14802
|
|
|
14802
|
-
# The name of the latest conversation message when the request is
|
|
14803
|
-
# Format: `projects//locations//conversations//messages/`.
|
|
14803
|
+
# Optional. The name of the latest conversation message when the request is
|
|
14804
|
+
# triggered. Format: `projects//locations//conversations//messages/`.
|
|
14804
14805
|
# Corresponds to the JSON property `latestMessage`
|
|
14805
14806
|
# @return [String]
|
|
14806
14807
|
attr_accessor :latest_message
|
|
14807
14808
|
|
|
14808
|
-
# The parent resource contains the conversation profile Format: '
|
|
14809
|
-
# projects//locations/`.
|
|
14809
|
+
# Required. The parent resource contains the conversation profile Format: '
|
|
14810
|
+
# projects/' or `projects//locations/`.
|
|
14810
14811
|
# Corresponds to the JSON property `parent`
|
|
14811
14812
|
# @return [String]
|
|
14812
14813
|
attr_accessor :parent
|
|
@@ -14816,12 +14817,12 @@ module Google
|
|
|
14816
14817
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2TextInput]
|
|
14817
14818
|
attr_accessor :query
|
|
14818
14819
|
|
|
14819
|
-
# The ID of the search session. The session_id can be combined with
|
|
14820
|
-
# V3 Agent ID retrieved from conversation profile or on its own to
|
|
14821
|
-
# search session. The search history of the same session will impact
|
|
14822
|
-
# result. It's up to the API caller to choose an appropriate `Session
|
|
14823
|
-
# can be a random number or some type of session identifiers (preferably
|
|
14824
|
-
# The length must not exceed 36 characters.
|
|
14820
|
+
# Optional. The ID of the search session. The session_id can be combined with
|
|
14821
|
+
# Dialogflow V3 Agent ID retrieved from conversation profile or on its own to
|
|
14822
|
+
# identify a search session. The search history of the same session will impact
|
|
14823
|
+
# the search result. It's up to the API caller to choose an appropriate `Session
|
|
14824
|
+
# ID`. It can be a random number or some type of session identifiers (preferably
|
|
14825
|
+
# hashed). The length must not exceed 36 characters.
|
|
14825
14826
|
# Corresponds to the JSON property `sessionId`
|
|
14826
14827
|
# @return [String]
|
|
14827
14828
|
attr_accessor :session_id
|
|
@@ -15331,15 +15332,15 @@ module Google
|
|
|
15331
15332
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters]
|
|
15332
15333
|
attr_accessor :assist_query_params
|
|
15333
15334
|
|
|
15334
|
-
# Max number of messages prior to and including [latest_message] to
|
|
15335
|
-
# context when compiling the suggestion. By default 500 and at most 1000.
|
|
15335
|
+
# Optional. Max number of messages prior to and including [latest_message] to
|
|
15336
|
+
# use as context when compiling the suggestion. By default 500 and at most 1000.
|
|
15336
15337
|
# Corresponds to the JSON property `contextSize`
|
|
15337
15338
|
# @return [Fixnum]
|
|
15338
15339
|
attr_accessor :context_size
|
|
15339
15340
|
|
|
15340
|
-
# The name of the latest conversation message used as context for
|
|
15341
|
-
# suggestion. If empty, the latest message of the conversation will be
|
|
15342
|
-
# Format: `projects//locations//conversations//messages/`.
|
|
15341
|
+
# Optional. The name of the latest conversation message used as context for
|
|
15342
|
+
# compiling suggestion. If empty, the latest message of the conversation will be
|
|
15343
|
+
# used. Format: `projects//locations//conversations//messages/`.
|
|
15343
15344
|
# Corresponds to the JSON property `latestMessage`
|
|
15344
15345
|
# @return [String]
|
|
15345
15346
|
attr_accessor :latest_message
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV2
|
|
18
18
|
# Version of the google-apis-dialogflow_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.91.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240614"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3864,14 +3864,9 @@ module Google
|
|
|
3864
3864
|
# Required. The project from which to list all conversation. Format: `projects//
|
|
3865
3865
|
# locations/`.
|
|
3866
3866
|
# @param [String] filter
|
|
3867
|
-
# A filter expression that filters conversations listed in the
|
|
3868
|
-
#
|
|
3869
|
-
#
|
|
3870
|
-
# a boolean. - The comparison operator must be either `=`,`!=`, `>`, or `<`. -
|
|
3871
|
-
# To filter on multiple expressions, separate the expressions with `AND` or `OR`
|
|
3872
|
-
# (omitting both implies `AND`). - For clarity, expressions can be enclosed in
|
|
3873
|
-
# parentheses. Only `lifecycle_state` can be filtered on in this way. For
|
|
3874
|
-
# example, the following expression only returns `COMPLETED` conversations: `
|
|
3867
|
+
# Optional. A filter expression that filters conversations listed in the
|
|
3868
|
+
# response. Only `lifecycle_state` can be filtered on in this way. For example,
|
|
3869
|
+
# the following expression only returns `COMPLETED` conversations: `
|
|
3875
3870
|
# lifecycle_state = "COMPLETED"` For more information about filtering, see [API
|
|
3876
3871
|
# Filtering](https://aip.dev/160).
|
|
3877
3872
|
# @param [Fixnum] page_size
|
|
@@ -4274,8 +4269,8 @@ module Google
|
|
|
4274
4269
|
|
|
4275
4270
|
# Get answers for the given query based on knowledge documents.
|
|
4276
4271
|
# @param [String] conversation
|
|
4277
|
-
# The conversation (between human agent and end user) where the search
|
|
4278
|
-
# is triggered. Format: `projects//locations//conversations/`.
|
|
4272
|
+
# Optional. The conversation (between human agent and end user) where the search
|
|
4273
|
+
# request is triggered. Format: `projects//locations//conversations/`.
|
|
4279
4274
|
# @param [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeRequest] google_cloud_dialogflow_v2_search_knowledge_request_object
|
|
4280
4275
|
# @param [String] fields
|
|
4281
4276
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -8492,14 +8487,9 @@ module Google
|
|
|
8492
8487
|
# Required. The project from which to list all conversation. Format: `projects//
|
|
8493
8488
|
# locations/`.
|
|
8494
8489
|
# @param [String] filter
|
|
8495
|
-
# A filter expression that filters conversations listed in the
|
|
8496
|
-
#
|
|
8497
|
-
#
|
|
8498
|
-
# a boolean. - The comparison operator must be either `=`,`!=`, `>`, or `<`. -
|
|
8499
|
-
# To filter on multiple expressions, separate the expressions with `AND` or `OR`
|
|
8500
|
-
# (omitting both implies `AND`). - For clarity, expressions can be enclosed in
|
|
8501
|
-
# parentheses. Only `lifecycle_state` can be filtered on in this way. For
|
|
8502
|
-
# example, the following expression only returns `COMPLETED` conversations: `
|
|
8490
|
+
# Optional. A filter expression that filters conversations listed in the
|
|
8491
|
+
# response. Only `lifecycle_state` can be filtered on in this way. For example,
|
|
8492
|
+
# the following expression only returns `COMPLETED` conversations: `
|
|
8503
8493
|
# lifecycle_state = "COMPLETED"` For more information about filtering, see [API
|
|
8504
8494
|
# Filtering](https://aip.dev/160).
|
|
8505
8495
|
# @param [Fixnum] page_size
|
|
@@ -8902,8 +8892,8 @@ module Google
|
|
|
8902
8892
|
|
|
8903
8893
|
# Get answers for the given query based on knowledge documents.
|
|
8904
8894
|
# @param [String] conversation
|
|
8905
|
-
# The conversation (between human agent and end user) where the search
|
|
8906
|
-
# is triggered. Format: `projects//locations//conversations/`.
|
|
8895
|
+
# Optional. The conversation (between human agent and end user) where the search
|
|
8896
|
+
# request is triggered. Format: `projects//locations//conversations/`.
|
|
8907
8897
|
# @param [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeRequest] google_cloud_dialogflow_v2_search_knowledge_request_object
|
|
8908
8898
|
# @param [String] fields
|
|
8909
8899
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -9833,8 +9823,8 @@ module Google
|
|
|
9833
9823
|
|
|
9834
9824
|
# Get answers for the given query based on knowledge documents.
|
|
9835
9825
|
# @param [String] parent
|
|
9836
|
-
# The parent resource contains the conversation profile Format: '
|
|
9837
|
-
# projects//locations/`.
|
|
9826
|
+
# Required. The parent resource contains the conversation profile Format: '
|
|
9827
|
+
# projects/' or `projects//locations/`.
|
|
9838
9828
|
# @param [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeRequest] google_cloud_dialogflow_v2_search_knowledge_request_object
|
|
9839
9829
|
# @param [String] fields
|
|
9840
9830
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -10010,8 +10000,8 @@ module Google
|
|
|
10010
10000
|
|
|
10011
10001
|
# Get answers for the given query based on knowledge documents.
|
|
10012
10002
|
# @param [String] parent
|
|
10013
|
-
# The parent resource contains the conversation profile Format: '
|
|
10014
|
-
# projects//locations/`.
|
|
10003
|
+
# Required. The parent resource contains the conversation profile Format: '
|
|
10004
|
+
# projects/' or `projects//locations/`.
|
|
10015
10005
|
# @param [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeRequest] google_cloud_dialogflow_v2_search_knowledge_request_object
|
|
10016
10006
|
# @param [String] fields
|
|
10017
10007
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.91.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-06-
|
|
11
|
+
date: 2024-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.91.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|