google-apis-dialogflow_v3 0.89.0 → 0.90.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: c000cb596e2b261b4f44ab343424f2a9d1619876182ba0fe75a28938451f6ffb
|
|
4
|
+
data.tar.gz: 8228b6ddc01de5dd165a97f039f7954d7499da3b388d92ae0c795518447074de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 015e4246466836ff6f114acbb49bf42b73994540a393e2c17fa93f286e1b0866f302bd86c92eae655329ed7b5556608f9096cf367dc6cec5512934cc8ee6b626
|
|
7
|
+
data.tar.gz: 275d0ce5cda6305404e6df7b1f2b97a51ba001e55dd27a7d9edcf08fe8b8125e3f8f2b0b7164abd57307d4109f3dcd4a558878a77fefdfa727a6ba1b756a849e
|
data/CHANGELOG.md
CHANGED
|
@@ -119,6 +119,14 @@ module Google
|
|
|
119
119
|
class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
|
|
120
120
|
include Google::Apis::Core::Hashable
|
|
121
121
|
|
|
122
|
+
# Enables consent-based end-user input redaction, if true, a pre-defined session
|
|
123
|
+
# parameter `$session.params.conversation-redaction` will be used to determine
|
|
124
|
+
# if the utterance should be redacted.
|
|
125
|
+
# Corresponds to the JSON property `enableConsentBasedRedaction`
|
|
126
|
+
# @return [Boolean]
|
|
127
|
+
attr_accessor :enable_consent_based_redaction
|
|
128
|
+
alias_method :enable_consent_based_redaction?, :enable_consent_based_redaction
|
|
129
|
+
|
|
122
130
|
# Enables DF Interaction logging.
|
|
123
131
|
# Corresponds to the JSON property `enableInteractionLogging`
|
|
124
132
|
# @return [Boolean]
|
|
@@ -137,6 +145,7 @@ module Google
|
|
|
137
145
|
|
|
138
146
|
# Update properties of this object
|
|
139
147
|
def update!(**args)
|
|
148
|
+
@enable_consent_based_redaction = args[:enable_consent_based_redaction] if args.key?(:enable_consent_based_redaction)
|
|
140
149
|
@enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging)
|
|
141
150
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
|
142
151
|
end
|
|
@@ -8933,6 +8942,14 @@ module Google
|
|
|
8933
8942
|
class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
|
|
8934
8943
|
include Google::Apis::Core::Hashable
|
|
8935
8944
|
|
|
8945
|
+
# Enables consent-based end-user input redaction, if true, a pre-defined session
|
|
8946
|
+
# parameter `$session.params.conversation-redaction` will be used to determine
|
|
8947
|
+
# if the utterance should be redacted.
|
|
8948
|
+
# Corresponds to the JSON property `enableConsentBasedRedaction`
|
|
8949
|
+
# @return [Boolean]
|
|
8950
|
+
attr_accessor :enable_consent_based_redaction
|
|
8951
|
+
alias_method :enable_consent_based_redaction?, :enable_consent_based_redaction
|
|
8952
|
+
|
|
8936
8953
|
# Enables DF Interaction logging.
|
|
8937
8954
|
# Corresponds to the JSON property `enableInteractionLogging`
|
|
8938
8955
|
# @return [Boolean]
|
|
@@ -8951,6 +8968,7 @@ module Google
|
|
|
8951
8968
|
|
|
8952
8969
|
# Update properties of this object
|
|
8953
8970
|
def update!(**args)
|
|
8971
|
+
@enable_consent_based_redaction = args[:enable_consent_based_redaction] if args.key?(:enable_consent_based_redaction)
|
|
8954
8972
|
@enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging)
|
|
8955
8973
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
|
8956
8974
|
end
|
|
@@ -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.90.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 = "20240721"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3374,6 +3374,7 @@ module Google
|
|
|
3374
3374
|
class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
|
|
3375
3375
|
# @private
|
|
3376
3376
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3377
|
+
property :enable_consent_based_redaction, as: 'enableConsentBasedRedaction'
|
|
3377
3378
|
property :enable_interaction_logging, as: 'enableInteractionLogging'
|
|
3378
3379
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
|
3379
3380
|
end
|
|
@@ -5772,6 +5773,7 @@ module Google
|
|
|
5772
5773
|
class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
|
|
5773
5774
|
# @private
|
|
5774
5775
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5776
|
+
property :enable_consent_based_redaction, as: 'enableConsentBasedRedaction'
|
|
5775
5777
|
property :enable_interaction_logging, as: 'enableInteractionLogging'
|
|
5776
5778
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
|
5777
5779
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.90.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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_v3/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.90.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|