google-apis-dialogflow_v3 0.4.0 → 0.5.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c8548ff18dfcc30324261b038fc3016bb0ff0fdf10b5b23415d2d7733eddc60
|
|
4
|
+
data.tar.gz: 44affe0711e76096864997ceba4079bcd46483820d0aed530a597dd47a721a6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 714b60dab3307c02b47fd570884a679cdc56d1132793769f723103e6cb1909274bbdd8030f9b7a53e1df9e921f1ea691c322c655a14ef2c455339006e56d4db9
|
|
7
|
+
data.tar.gz: d1bcb43fa0ed6703272eb5a16c06f11690f10451c781223fc36fed6c3f848916755a3eef91b7b5338b01791dc6cecdc5995128015ab629edf943585b13ffee1e
|
data/CHANGELOG.md
CHANGED
|
@@ -38,7 +38,7 @@ module Google
|
|
|
38
38
|
attr_accessor :avatar_uri
|
|
39
39
|
|
|
40
40
|
# Immutable. The default language of the agent as a language tag. See [Language
|
|
41
|
-
# Support](https://cloud.google.com/dialogflow/docs/reference/language) for a
|
|
41
|
+
# Support](https://cloud.google.com/dialogflow/cx/docs/reference/language) for a
|
|
42
42
|
# list of the currently supported language codes. This field cannot be set by
|
|
43
43
|
# the Agents.UpdateAgent method.
|
|
44
44
|
# Corresponds to the JSON property `defaultLanguageCode`
|
|
@@ -3118,7 +3118,7 @@ module Google
|
|
|
3118
3118
|
attr_accessor :intent
|
|
3119
3119
|
|
|
3120
3120
|
# Required. The language of the input. See [Language Support](https://cloud.
|
|
3121
|
-
# google.com/dialogflow/docs/reference/language) for a list of the currently
|
|
3121
|
+
# google.com/dialogflow/cx/docs/reference/language) for a list of the currently
|
|
3122
3122
|
# supported language codes. Note that queries in the same session do not
|
|
3123
3123
|
# necessarily need to specify the same language.
|
|
3124
3124
|
# Corresponds to the JSON property `languageCode`
|
|
@@ -3156,6 +3156,12 @@ module Google
|
|
|
3156
3156
|
attr_accessor :analyze_query_text_sentiment
|
|
3157
3157
|
alias_method :analyze_query_text_sentiment?, :analyze_query_text_sentiment
|
|
3158
3158
|
|
|
3159
|
+
# Whether to disable webhook calls for this request.
|
|
3160
|
+
# Corresponds to the JSON property `disableWebhook`
|
|
3161
|
+
# @return [Boolean]
|
|
3162
|
+
attr_accessor :disable_webhook
|
|
3163
|
+
alias_method :disable_webhook?, :disable_webhook
|
|
3164
|
+
|
|
3159
3165
|
# An object that represents a latitude/longitude pair. This is expressed as a
|
|
3160
3166
|
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
|
3161
3167
|
# specified otherwise, this must conform to the WGS84 standard. Values must be
|
|
@@ -3217,6 +3223,7 @@ module Google
|
|
|
3217
3223
|
# Update properties of this object
|
|
3218
3224
|
def update!(**args)
|
|
3219
3225
|
@analyze_query_text_sentiment = args[:analyze_query_text_sentiment] if args.key?(:analyze_query_text_sentiment)
|
|
3226
|
+
@disable_webhook = args[:disable_webhook] if args.key?(:disable_webhook)
|
|
3220
3227
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
|
3221
3228
|
@parameters = args[:parameters] if args.key?(:parameters)
|
|
3222
3229
|
@payload = args[:payload] if args.key?(:payload)
|
|
@@ -3272,7 +3279,7 @@ module Google
|
|
|
3272
3279
|
attr_accessor :intent_detection_confidence
|
|
3273
3280
|
|
|
3274
3281
|
# The language that was triggered during intent detection. See [Language Support]
|
|
3275
|
-
# (https://cloud.google.com/dialogflow/docs/reference/language) for a list of
|
|
3282
|
+
# (https://cloud.google.com/dialogflow/cx/docs/reference/language) for a list of
|
|
3276
3283
|
# the currently supported language codes.
|
|
3277
3284
|
# Corresponds to the JSON property `languageCode`
|
|
3278
3285
|
# @return [String]
|
|
@@ -6621,7 +6628,7 @@ module Google
|
|
|
6621
6628
|
attr_accessor :intent
|
|
6622
6629
|
|
|
6623
6630
|
# Required. The language of the input. See [Language Support](https://cloud.
|
|
6624
|
-
# google.com/dialogflow/docs/reference/language) for a list of the currently
|
|
6631
|
+
# google.com/dialogflow/cx/docs/reference/language) for a list of the currently
|
|
6625
6632
|
# supported language codes. Note that queries in the same session do not
|
|
6626
6633
|
# necessarily need to specify the same language.
|
|
6627
6634
|
# Corresponds to the JSON property `languageCode`
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV3
|
|
18
18
|
# Version of the google-apis-dialogflow_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.5.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.1.2"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210222"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2940,6 +2940,7 @@ module Google
|
|
|
2940
2940
|
# @private
|
|
2941
2941
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2942
2942
|
property :analyze_query_text_sentiment, as: 'analyzeQueryTextSentiment'
|
|
2943
|
+
property :disable_webhook, as: 'disableWebhook'
|
|
2943
2944
|
property :geo_location, as: 'geoLocation', class: Google::Apis::DialogflowV3::GoogleTypeLatLng, decorator: Google::Apis::DialogflowV3::GoogleTypeLatLng::Representation
|
|
2944
2945
|
|
|
2945
2946
|
hash :parameters, as: 'parameters'
|
|
@@ -369,7 +369,7 @@ module Google
|
|
|
369
369
|
# The language of the following fields in `entity_type`: * `EntityType.entities.
|
|
370
370
|
# value` * `EntityType.entities.synonyms` * `EntityType.excluded_phrases.value`
|
|
371
371
|
# If not specified, the agent's default language is used. [Many languages](https:
|
|
372
|
-
# //cloud.google.com/dialogflow/docs/reference/language) are supported. Note:
|
|
372
|
+
# //cloud.google.com/dialogflow/cx/docs/reference/language) are supported. Note:
|
|
373
373
|
# languages must be enabled in the agent before they can be used.
|
|
374
374
|
# @param [String] fields
|
|
375
375
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -449,8 +449,8 @@ module Google
|
|
|
449
449
|
# language dependent: * `EntityType.entities.value` * `EntityType.entities.
|
|
450
450
|
# synonyms` * `EntityType.excluded_phrases.value` If not specified, the agent's
|
|
451
451
|
# default language is used. [Many languages](https://cloud.google.com/dialogflow/
|
|
452
|
-
# docs/reference/language) are supported. Note: languages must be enabled in
|
|
453
|
-
# agent before they can be used.
|
|
452
|
+
# cx/docs/reference/language) are supported. Note: languages must be enabled in
|
|
453
|
+
# the agent before they can be used.
|
|
454
454
|
# @param [String] fields
|
|
455
455
|
# Selector specifying which fields to include in a partial response.
|
|
456
456
|
# @param [String] quota_user
|
|
@@ -487,7 +487,7 @@ module Google
|
|
|
487
487
|
# The language to list entity types for. The following fields are language
|
|
488
488
|
# dependent: * `EntityType.entities.value` * `EntityType.entities.synonyms` * `
|
|
489
489
|
# EntityType.excluded_phrases.value` If not specified, the agent's default
|
|
490
|
-
# language is used. [Many languages](https://cloud.google.com/dialogflow/docs/
|
|
490
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
|
491
491
|
# reference/language) are supported. Note: languages must be enabled in the
|
|
492
492
|
# agent before they can be used.
|
|
493
493
|
# @param [Fixnum] page_size
|
|
@@ -534,7 +534,7 @@ module Google
|
|
|
534
534
|
# The language of the following fields in `entity_type`: * `EntityType.entities.
|
|
535
535
|
# value` * `EntityType.entities.synonyms` * `EntityType.excluded_phrases.value`
|
|
536
536
|
# If not specified, the agent's default language is used. [Many languages](https:
|
|
537
|
-
# //cloud.google.com/dialogflow/docs/reference/language) are supported. Note:
|
|
537
|
+
# //cloud.google.com/dialogflow/cx/docs/reference/language) are supported. Note:
|
|
538
538
|
# languages must be enabled in the agent before they can be used.
|
|
539
539
|
# @param [String] update_mask
|
|
540
540
|
# The mask to control which fields get updated.
|
|
@@ -1338,7 +1338,7 @@ module Google
|
|
|
1338
1338
|
# The language of the following fields in `flow`: * `Flow.event_handlers.
|
|
1339
1339
|
# trigger_fulfillment.messages` * `Flow.transition_routes.trigger_fulfillment.
|
|
1340
1340
|
# messages` If not specified, the agent's default language is used. [Many
|
|
1341
|
-
# languages](https://cloud.google.com/dialogflow/docs/reference/language) are
|
|
1341
|
+
# languages](https://cloud.google.com/dialogflow/cx/docs/reference/language) are
|
|
1342
1342
|
# supported. Note: languages must be enabled in the agent before they can be
|
|
1343
1343
|
# used.
|
|
1344
1344
|
# @param [String] fields
|
|
@@ -1419,8 +1419,8 @@ module Google
|
|
|
1419
1419
|
# dependent: * `Flow.event_handlers.trigger_fulfillment.messages` * `Flow.
|
|
1420
1420
|
# transition_routes.trigger_fulfillment.messages` If not specified, the agent's
|
|
1421
1421
|
# default language is used. [Many languages](https://cloud.google.com/dialogflow/
|
|
1422
|
-
# docs/reference/language) are supported. Note: languages must be enabled in
|
|
1423
|
-
# agent before they can be used.
|
|
1422
|
+
# cx/docs/reference/language) are supported. Note: languages must be enabled in
|
|
1423
|
+
# the agent before they can be used.
|
|
1424
1424
|
# @param [String] fields
|
|
1425
1425
|
# Selector specifying which fields to include in a partial response.
|
|
1426
1426
|
# @param [String] quota_user
|
|
@@ -1492,9 +1492,9 @@ module Google
|
|
|
1492
1492
|
# The language to list flows for. The following fields are language dependent: *
|
|
1493
1493
|
# `Flow.event_handlers.trigger_fulfillment.messages` * `Flow.transition_routes.
|
|
1494
1494
|
# trigger_fulfillment.messages` If not specified, the agent's default language
|
|
1495
|
-
# is used. [Many languages](https://cloud.google.com/dialogflow/docs/
|
|
1496
|
-
# language) are supported. Note: languages must be enabled in the
|
|
1497
|
-
# they can be used.
|
|
1495
|
+
# is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
|
1496
|
+
# reference/language) are supported. Note: languages must be enabled in the
|
|
1497
|
+
# agent before they can be used.
|
|
1498
1498
|
# @param [Fixnum] page_size
|
|
1499
1499
|
# The maximum number of items to return in a single page. By default 100 and at
|
|
1500
1500
|
# most 1000.
|
|
@@ -1539,7 +1539,7 @@ module Google
|
|
|
1539
1539
|
# The language of the following fields in `flow`: * `Flow.event_handlers.
|
|
1540
1540
|
# trigger_fulfillment.messages` * `Flow.transition_routes.trigger_fulfillment.
|
|
1541
1541
|
# messages` If not specified, the agent's default language is used. [Many
|
|
1542
|
-
# languages](https://cloud.google.com/dialogflow/docs/reference/language) are
|
|
1542
|
+
# languages](https://cloud.google.com/dialogflow/cx/docs/reference/language) are
|
|
1543
1543
|
# supported. Note: languages must be enabled in the agent before they can be
|
|
1544
1544
|
# used.
|
|
1545
1545
|
# @param [String] update_mask
|
|
@@ -1657,7 +1657,7 @@ module Google
|
|
|
1657
1657
|
# messages` * `Page.transition_routes.trigger_fulfillment.messages` * `Page.
|
|
1658
1658
|
# transition_route_groups.transition_routes.trigger_fulfillment.messages` If not
|
|
1659
1659
|
# specified, the agent's default language is used. [Many languages](https://
|
|
1660
|
-
# cloud.google.com/dialogflow/docs/reference/language) are supported. Note:
|
|
1660
|
+
# cloud.google.com/dialogflow/cx/docs/reference/language) are supported. Note:
|
|
1661
1661
|
# languages must be enabled in the agent before they can be used.
|
|
1662
1662
|
# @param [String] fields
|
|
1663
1663
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -1740,8 +1740,8 @@ module Google
|
|
|
1740
1740
|
# trigger_fulfillment.messages` * `Page.transition_route_groups.
|
|
1741
1741
|
# transition_routes.trigger_fulfillment.messages` If not specified, the agent's
|
|
1742
1742
|
# default language is used. [Many languages](https://cloud.google.com/dialogflow/
|
|
1743
|
-
# docs/reference/language) are supported. Note: languages must be enabled in
|
|
1744
|
-
# agent before they can be used.
|
|
1743
|
+
# cx/docs/reference/language) are supported. Note: languages must be enabled in
|
|
1744
|
+
# the agent before they can be used.
|
|
1745
1745
|
# @param [String] fields
|
|
1746
1746
|
# Selector specifying which fields to include in a partial response.
|
|
1747
1747
|
# @param [String] quota_user
|
|
@@ -1782,8 +1782,8 @@ module Google
|
|
|
1782
1782
|
# trigger_fulfillment.messages` * `Page.transition_route_groups.
|
|
1783
1783
|
# transition_routes.trigger_fulfillment.messages` If not specified, the agent's
|
|
1784
1784
|
# default language is used. [Many languages](https://cloud.google.com/dialogflow/
|
|
1785
|
-
# docs/reference/language) are supported. Note: languages must be enabled in
|
|
1786
|
-
# agent before they can be used.
|
|
1785
|
+
# cx/docs/reference/language) are supported. Note: languages must be enabled in
|
|
1786
|
+
# the agent before they can be used.
|
|
1787
1787
|
# @param [Fixnum] page_size
|
|
1788
1788
|
# The maximum number of items to return in a single page. By default 100 and at
|
|
1789
1789
|
# most 1000.
|
|
@@ -1832,7 +1832,7 @@ module Google
|
|
|
1832
1832
|
# messages` * `Page.transition_routes.trigger_fulfillment.messages` * `Page.
|
|
1833
1833
|
# transition_route_groups.transition_routes.trigger_fulfillment.messages` If not
|
|
1834
1834
|
# specified, the agent's default language is used. [Many languages](https://
|
|
1835
|
-
# cloud.google.com/dialogflow/docs/reference/language) are supported. Note:
|
|
1835
|
+
# cloud.google.com/dialogflow/cx/docs/reference/language) are supported. Note:
|
|
1836
1836
|
# languages must be enabled in the agent before they can be used.
|
|
1837
1837
|
# @param [String] update_mask
|
|
1838
1838
|
# The mask to control which fields get updated. If the mask is not present, all
|
|
@@ -1876,7 +1876,7 @@ module Google
|
|
|
1876
1876
|
# @param [String] language_code
|
|
1877
1877
|
# The language to list transition route groups for. The field `messages` in
|
|
1878
1878
|
# TransitionRoute is language dependent. If not specified, the agent's default
|
|
1879
|
-
# language is used. [Many languages](https://cloud.google.com/dialogflow/docs/
|
|
1879
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
|
1880
1880
|
# reference/language) are supported. Note: languages must be enabled in the
|
|
1881
1881
|
# agent before they can be used.
|
|
1882
1882
|
# @param [String] fields
|
|
@@ -1954,7 +1954,7 @@ module Google
|
|
|
1954
1954
|
# @param [String] language_code
|
|
1955
1955
|
# The language to list transition route groups for. The field `messages` in
|
|
1956
1956
|
# TransitionRoute is language dependent. If not specified, the agent's default
|
|
1957
|
-
# language is used. [Many languages](https://cloud.google.com/dialogflow/docs/
|
|
1957
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
|
1958
1958
|
# reference/language) are supported. Note: languages must be enabled in the
|
|
1959
1959
|
# agent before they can be used.
|
|
1960
1960
|
# @param [String] fields
|
|
@@ -1992,7 +1992,7 @@ module Google
|
|
|
1992
1992
|
# @param [String] language_code
|
|
1993
1993
|
# The language to list transition route groups for. The field `messages` in
|
|
1994
1994
|
# TransitionRoute is language dependent. If not specified, the agent's default
|
|
1995
|
-
# language is used. [Many languages](https://cloud.google.com/dialogflow/docs/
|
|
1995
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
|
1996
1996
|
# reference/language) are supported. Note: languages must be enabled in the
|
|
1997
1997
|
# agent before they can be used.
|
|
1998
1998
|
# @param [Fixnum] page_size
|
|
@@ -2039,7 +2039,7 @@ module Google
|
|
|
2039
2039
|
# @param [String] language_code
|
|
2040
2040
|
# The language to list transition route groups for. The field `messages` in
|
|
2041
2041
|
# TransitionRoute is language dependent. If not specified, the agent's default
|
|
2042
|
-
# language is used. [Many languages](https://cloud.google.com/dialogflow/docs/
|
|
2042
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
|
2043
2043
|
# reference/language) are supported. Note: languages must be enabled in the
|
|
2044
2044
|
# agent before they can be used.
|
|
2045
2045
|
# @param [String] update_mask
|
|
@@ -2289,7 +2289,7 @@ module Google
|
|
|
2289
2289
|
# @param [String] language_code
|
|
2290
2290
|
# The language of the following fields in `intent`: * `Intent.training_phrases.
|
|
2291
2291
|
# parts.text` If not specified, the agent's default language is used. [Many
|
|
2292
|
-
# languages](https://cloud.google.com/dialogflow/docs/reference/language) are
|
|
2292
|
+
# languages](https://cloud.google.com/dialogflow/cx/docs/reference/language) are
|
|
2293
2293
|
# supported. Note: languages must be enabled in the agent before they can be
|
|
2294
2294
|
# used.
|
|
2295
2295
|
# @param [String] fields
|
|
@@ -2361,7 +2361,7 @@ module Google
|
|
|
2361
2361
|
# The language to retrieve the intent for. The following fields are language
|
|
2362
2362
|
# dependent: * `Intent.training_phrases.parts.text` If not specified, the agent'
|
|
2363
2363
|
# s default language is used. [Many languages](https://cloud.google.com/
|
|
2364
|
-
# dialogflow/docs/reference/language) are supported. Note: languages must be
|
|
2364
|
+
# dialogflow/cx/docs/reference/language) are supported. Note: languages must be
|
|
2365
2365
|
# enabled in the agent before they can be used.
|
|
2366
2366
|
# @param [String] fields
|
|
2367
2367
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -2400,7 +2400,7 @@ module Google
|
|
|
2400
2400
|
# @param [String] language_code
|
|
2401
2401
|
# The language to list intents for. The following fields are language dependent:
|
|
2402
2402
|
# * `Intent.training_phrases.parts.text` If not specified, the agent's default
|
|
2403
|
-
# language is used. [Many languages](https://cloud.google.com/dialogflow/docs/
|
|
2403
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
|
2404
2404
|
# reference/language) are supported. Note: languages must be enabled in the
|
|
2405
2405
|
# agent before they can be used.
|
|
2406
2406
|
# @param [Fixnum] page_size
|
|
@@ -2448,7 +2448,7 @@ module Google
|
|
|
2448
2448
|
# @param [String] language_code
|
|
2449
2449
|
# The language of the following fields in `intent`: * `Intent.training_phrases.
|
|
2450
2450
|
# parts.text` If not specified, the agent's default language is used. [Many
|
|
2451
|
-
# languages](https://cloud.google.com/dialogflow/docs/reference/language) are
|
|
2451
|
+
# languages](https://cloud.google.com/dialogflow/cx/docs/reference/language) are
|
|
2452
2452
|
# supported. Note: languages must be enabled in the agent before they can be
|
|
2453
2453
|
# used.
|
|
2454
2454
|
# @param [String] update_mask
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.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: 2021-
|
|
11
|
+
date: 2021-03-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -52,7 +52,7 @@ licenses:
|
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.5.0
|
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.2.
|
|
72
|
+
rubygems_version: 3.2.11
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Simple REST client for Dialogflow API V3
|