google-apis-dialogflow_v3 0.11.0 → 0.12.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_v3/classes.rb +17 -14
- data/lib/google/apis/dialogflow_v3/gem_version.rb +2 -2
- 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: 5b48e2d0549c62b484978c4439d4e4d9c52cf15331629598fcde0f99d42dbd3c
|
|
4
|
+
data.tar.gz: 691751a26f0f8e0b1feb37ff0b656e43e68bdf4198c6da7c2c356bd082862f76
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37c6df17fa6f7ee3b4b2abf20d987ce1c5939b4962b39e054fdc4f5589c755e6d9a55de461a12f32b1fc44e1484383116634c27d643e929db29d9ded277be469
|
|
7
|
+
data.tar.gz: 3dadcd12a27f264011b0a4b2ab2626df516d343b895f0a3a6b427e2e377e6ea6bc4e67d2620fb590ca872cb41661f1dd649c2d423676ebad5ee08cbc42c34257
|
data/CHANGELOG.md
CHANGED
|
@@ -3316,14 +3316,15 @@ module Google
|
|
|
3316
3316
|
|
|
3317
3317
|
# Additional parameters to be put into session parameters. To remove a parameter
|
|
3318
3318
|
# from the session, clients should explicitly set the parameter value to null.
|
|
3319
|
-
#
|
|
3320
|
-
#
|
|
3321
|
-
#
|
|
3322
|
-
#
|
|
3323
|
-
#
|
|
3324
|
-
#
|
|
3325
|
-
# type
|
|
3326
|
-
#
|
|
3319
|
+
# You can reference the session parameters in the agent with the following
|
|
3320
|
+
# format: $session.params.parameter-id. Depending on your protocol or client
|
|
3321
|
+
# library language, this is a map, associative array, symbol table, dictionary,
|
|
3322
|
+
# or JSON object composed of a collection of (MapKey, MapValue) pairs: - MapKey
|
|
3323
|
+
# type: string - MapKey value: parameter name - MapValue type: - If parameter's
|
|
3324
|
+
# entity type is a composite entity: map - Else: depending on parameter value
|
|
3325
|
+
# type, could be one of string, number, boolean, null, list or map - MapValue
|
|
3326
|
+
# value: - If parameter's entity type is a composite entity: map from composite
|
|
3327
|
+
# entity property names to property values - Else: parameter value
|
|
3327
3328
|
# Corresponds to the JSON property `parameters`
|
|
3328
3329
|
# @return [Hash<String,Object>]
|
|
3329
3330
|
attr_accessor :parameters
|
|
@@ -3990,8 +3991,8 @@ module Google
|
|
|
3990
3991
|
# @return [Array<String>]
|
|
3991
3992
|
attr_accessor :purge_data_types
|
|
3992
3993
|
|
|
3993
|
-
# Defines
|
|
3994
|
-
#
|
|
3994
|
+
# Defines the data for which Dialogflow applies redaction. Dialogflow does not
|
|
3995
|
+
# redact data that it does not have access to – for example, Cloud logging.
|
|
3995
3996
|
# Corresponds to the JSON property `redactionScope`
|
|
3996
3997
|
# @return [String]
|
|
3997
3998
|
attr_accessor :redaction_scope
|
|
@@ -4001,10 +4002,12 @@ module Google
|
|
|
4001
4002
|
# @return [String]
|
|
4002
4003
|
attr_accessor :redaction_strategy
|
|
4003
4004
|
|
|
4004
|
-
# Retains
|
|
4005
|
-
#
|
|
4006
|
-
#
|
|
4007
|
-
#
|
|
4005
|
+
# Retains data in interaction logging for the specified number of days. This
|
|
4006
|
+
# does not apply to Cloud logging, which is owned by the user - not Dialogflow.
|
|
4007
|
+
# User must Set a value lower than Dialogflow's default 30d TTL. Setting a value
|
|
4008
|
+
# higher than that has no effect. A missing value or setting to 0 also means we
|
|
4009
|
+
# use Dialogflow's default TTL. Note: Interaction logging is a limited access
|
|
4010
|
+
# feature. Talk to your Google representative to check availability for you.
|
|
4008
4011
|
# Corresponds to the JSON property `retentionWindowDays`
|
|
4009
4012
|
# @return [Fixnum]
|
|
4010
4013
|
attr_accessor :retention_window_days
|
|
@@ -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.12.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210517"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
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.12.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-05-
|
|
11
|
+
date: 2021-05-24 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.12.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: []
|