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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 324a873d4add1208d2220cfb45b95f54af2f53eb0f684a8a4e4bba5ca2511527
4
- data.tar.gz: 47515d2b6938a5ab1d8494b9fc8eb9e6108a368519b3003b77d41eb986efa531
3
+ metadata.gz: 5b48e2d0549c62b484978c4439d4e4d9c52cf15331629598fcde0f99d42dbd3c
4
+ data.tar.gz: 691751a26f0f8e0b1feb37ff0b656e43e68bdf4198c6da7c2c356bd082862f76
5
5
  SHA512:
6
- metadata.gz: aa77c196c8f06b95d5b7705d6cdda43e2cc36b58e619b456ed5321349a3a5ff6c582318e244269e7fc52105ce4565ddd3edec97d4de8cae4ab3470eccee9bba2
7
- data.tar.gz: 393daa268a74ef290b76c88fb500e036c88c7a2754e49fc43dda83aab09e8e7745df06c7831f08865be058206c07397401d93ca3e487bc1b650f549c81199d17
6
+ metadata.gz: 37c6df17fa6f7ee3b4b2abf20d987ce1c5939b4962b39e054fdc4f5589c755e6d9a55de461a12f32b1fc44e1484383116634c27d643e929db29d9ded277be469
7
+ data.tar.gz: 3dadcd12a27f264011b0a4b2ab2626df516d343b895f0a3a6b427e2e377e6ea6bc4e67d2620fb590ca872cb41661f1dd649c2d423676ebad5ee08cbc42c34257
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.12.0 (2021-05-19)
4
+
5
+ * Regenerated from discovery document revision 20210517
6
+
3
7
  ### v0.11.0 (2021-05-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20210510
@@ -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
- # Depending on your protocol or client library language, this is a map,
3320
- # associative array, symbol table, dictionary, or JSON object composed of a
3321
- # collection of (MapKey, MapValue) pairs: - MapKey type: string - MapKey value:
3322
- # parameter name - MapValue type: - If parameter's entity type is a composite
3323
- # entity: map - Else: depending on parameter value type, could be one of string,
3324
- # number, boolean, null, list or map - MapValue value: - If parameter's entity
3325
- # type is a composite entity: map from composite entity property names to
3326
- # property values - Else: parameter value
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 on what data we apply redaction. Note that we don't redact data to
3994
- # which we don't have access, e.g., Stackdriver logs.
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 the data for the specified number of days. User must Set a value lower
4005
- # than Dialogflow's default 30d TTL. Setting a value higher than that has no
4006
- # effect. A missing value or setting to 0 also means we use Dialogflow's default
4007
- # TTL.
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.11.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 = "20210510"
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.11.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-18 00:00:00.000000000 Z
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.11.0
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: []