google-apis-dialogflow_v2beta1 0.115.0 → 0.117.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 +8 -0
- data/lib/google/apis/dialogflow_v2beta1/classes.rb +14 -2
- data/lib/google/apis/dialogflow_v2beta1/gem_version.rb +2 -2
- data/lib/google/apis/dialogflow_v2beta1/representations.rb +1 -0
- data/lib/google/apis/dialogflow_v2beta1/service.rb +12 -10
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b98566851e375ae1a4e8bd6dc5516af8dc8a94bfe3e22735b881e6547588481e
|
|
4
|
+
data.tar.gz: ab5620f98ac28b6ce1f1dc218c286553394149a9f7a6728228d45131137851c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38b8c1378aff501322ea525a6ff739bd75ca2055512c21a2e38ff50c6dfcea6b98ceb72908b59e50cf4e321e03462d179c7151c8a37477b774f7a8ac63f5f14a
|
|
7
|
+
data.tar.gz: c1e0c911dcc1696e6461b5d9f52abcefb8ca402b63c035ab3feca2f3f7fcd7416f11ffb541d065f8e16a8a2035f72af08e6f70b043caf8f6681097a5779a0c15
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v2beta1
|
|
2
2
|
|
|
3
|
+
### v0.117.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251203
|
|
6
|
+
|
|
7
|
+
### v0.116.0 (2025-11-16)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251110
|
|
10
|
+
|
|
3
11
|
### v0.115.0 (2025-11-09)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251105
|
|
@@ -20158,6 +20158,16 @@ module Google
|
|
|
20158
20158
|
class GoogleCloudDialogflowV2beta1Participant
|
|
20159
20159
|
include Google::Apis::Core::Hashable
|
|
20160
20160
|
|
|
20161
|
+
# Optional. For tracking the utilization of prebuilt Agent Assist integration
|
|
20162
|
+
# modules. This field is only inscope for Integration type that include UI
|
|
20163
|
+
# Modules, Backend Modules, and Agent Desktop connector, it is out of scope for
|
|
20164
|
+
# CCaaS and Direct Integration. For each human agent, prebuilt UI Modules needs
|
|
20165
|
+
# to trigger the UpdateParticipant API to update this field. Both
|
|
20166
|
+
# CreateParticipantRequest and UpdateParticipantRequest will be supported.
|
|
20167
|
+
# Corresponds to the JSON property `agentDesktopSource`
|
|
20168
|
+
# @return [String]
|
|
20169
|
+
attr_accessor :agent_desktop_source
|
|
20170
|
+
|
|
20161
20171
|
# Optional. Key-value filters on the metadata of documents returned by article
|
|
20162
20172
|
# suggestion. If specified, article suggestion only returns suggested documents
|
|
20163
20173
|
# that match all filters in their Document.metadata. Multiple values for a
|
|
@@ -20206,6 +20216,7 @@ module Google
|
|
|
20206
20216
|
|
|
20207
20217
|
# Update properties of this object
|
|
20208
20218
|
def update!(**args)
|
|
20219
|
+
@agent_desktop_source = args[:agent_desktop_source] if args.key?(:agent_desktop_source)
|
|
20209
20220
|
@documents_metadata_filters = args[:documents_metadata_filters] if args.key?(:documents_metadata_filters)
|
|
20210
20221
|
@name = args[:name] if args.key?(:name)
|
|
20211
20222
|
@obfuscated_external_user_id = args[:obfuscated_external_user_id] if args.key?(:obfuscated_external_user_id)
|
|
@@ -24582,8 +24593,9 @@ module Google
|
|
|
24582
24593
|
attr_accessor :operations
|
|
24583
24594
|
|
|
24584
24595
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
24585
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
24586
|
-
# when attempting to list all resources across all supported
|
|
24596
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
24597
|
+
# For example, when attempting to list all resources across all supported
|
|
24598
|
+
# locations.
|
|
24587
24599
|
# Corresponds to the JSON property `unreachable`
|
|
24588
24600
|
# @return [Array<String>]
|
|
24589
24601
|
attr_accessor :unreachable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV2beta1
|
|
18
18
|
# Version of the google-apis-dialogflow_v2beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.117.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251203"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -9490,6 +9490,7 @@ module Google
|
|
|
9490
9490
|
class GoogleCloudDialogflowV2beta1Participant
|
|
9491
9491
|
# @private
|
|
9492
9492
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9493
|
+
property :agent_desktop_source, as: 'agentDesktopSource'
|
|
9493
9494
|
hash :documents_metadata_filters, as: 'documentsMetadataFilters'
|
|
9494
9495
|
property :name, as: 'name'
|
|
9495
9496
|
property :obfuscated_external_user_id, as: 'obfuscatedExternalUserId'
|
|
@@ -9491,11 +9491,12 @@ module Google
|
|
|
9491
9491
|
# The standard list page token.
|
|
9492
9492
|
# @param [Boolean] return_partial_success
|
|
9493
9493
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
9494
|
-
# those that are unreachable are returned in the
|
|
9495
|
-
# unreachable
|
|
9496
|
-
#
|
|
9497
|
-
# by default
|
|
9498
|
-
# explicitly documented otherwise in service or product specific
|
|
9494
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
9495
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
9496
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
9497
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
9498
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
9499
|
+
# documentation.
|
|
9499
9500
|
# @param [String] fields
|
|
9500
9501
|
# Selector specifying which fields to include in a partial response.
|
|
9501
9502
|
# @param [String] quota_user
|
|
@@ -10210,11 +10211,12 @@ module Google
|
|
|
10210
10211
|
# The standard list page token.
|
|
10211
10212
|
# @param [Boolean] return_partial_success
|
|
10212
10213
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
10213
|
-
# those that are unreachable are returned in the
|
|
10214
|
-
# unreachable
|
|
10215
|
-
#
|
|
10216
|
-
# by default
|
|
10217
|
-
# explicitly documented otherwise in service or product specific
|
|
10214
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
10215
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
10216
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
10217
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
10218
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
10219
|
+
# documentation.
|
|
10218
10220
|
# @param [String] fields
|
|
10219
10221
|
# Selector specifying which fields to include in a partial response.
|
|
10220
10222
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v2beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.117.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.117.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|