google-apis-dialogflow_v3 0.30.0 → 0.33.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a157a987fd45995d145519245a8a833d9400e1c9fb3d8a73c86ec9c6df638274
|
4
|
+
data.tar.gz: debdf8a1e8f0692b22d36e2778f375a450e0bc05159f0fc7c244bb71b8d9eeb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 810395cc722b641eec6f6a75916c960cf1c7d9c59604e211405d8c942fddd6258b95ff98b35b1d4725d566a8b7074c552a50d8b32e031cb630d84125b87dd3ab
|
7
|
+
data.tar.gz: e419ec58ed5770b57cec748b13190ef99dc522fb69c5bad98cd5dce6ab75cc4e44476ae5a095f5a053cd3fa1e256f4fbbadc2134dd8842f6a78ee6d35c06dad8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.33.0 (2022-04-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220422
|
6
|
+
|
7
|
+
### v0.32.0 (2022-04-14)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220411
|
10
|
+
|
11
|
+
### v0.31.0 (2022-04-06)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220404
|
14
|
+
|
3
15
|
### v0.30.0 (2022-03-31)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220330
|
@@ -1888,7 +1888,7 @@ module Google
|
|
1888
1888
|
# saying "help" or "can I talk to a human?", which can be handled in a common
|
1889
1889
|
# way regardless of the current page. Transition routes defined in the page have
|
1890
1890
|
# higher priority than those defined in the flow. TransitionRoutes are evalauted
|
1891
|
-
# in the following order: * TransitionRoutes with intent specified
|
1891
|
+
# in the following order: * TransitionRoutes with intent specified. *
|
1892
1892
|
# TransitionRoutes with only condition specified. TransitionRoutes with intent
|
1893
1893
|
# specified are inherited by pages in the flow.
|
1894
1894
|
# Corresponds to the JSON property `transitionRoutes`
|
@@ -2197,8 +2197,11 @@ module Google
|
|
2197
2197
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentSetParameterAction>]
|
2198
2198
|
attr_accessor :set_parameter_actions
|
2199
2199
|
|
2200
|
-
# The
|
2201
|
-
#
|
2200
|
+
# The value of this field will be populated in the WebhookRequest `
|
2201
|
+
# fulfillmentInfo.tag` field by Dialogflow when the associated webhook is called.
|
2202
|
+
# The tag is typically used by the webhook service to identify which
|
2203
|
+
# fulfillment is being called, but it could be used for other purposes. This
|
2204
|
+
# field is required if `webhook` is specified.
|
2202
2205
|
# Corresponds to the JSON property `tag`
|
2203
2206
|
# @return [String]
|
2204
2207
|
attr_accessor :tag
|
@@ -3624,7 +3627,7 @@ module Google
|
|
3624
3627
|
class GoogleCloudDialogflowCxV3Page
|
3625
3628
|
include Google::Apis::Core::Hashable
|
3626
3629
|
|
3627
|
-
# Required. The human-readable name of the page, unique within the
|
3630
|
+
# Required. The human-readable name of the page, unique within the flow.
|
3628
3631
|
# Corresponds to the JSON property `displayName`
|
3629
3632
|
# @return [String]
|
3630
3633
|
attr_accessor :display_name
|
@@ -4760,6 +4763,11 @@ module Google
|
|
4760
4763
|
class GoogleCloudDialogflowCxV3SecuritySettings
|
4761
4764
|
include Google::Apis::Core::Hashable
|
4762
4765
|
|
4766
|
+
# Settings for exporting audio.
|
4767
|
+
# Corresponds to the JSON property `audioExportSettings`
|
4768
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings]
|
4769
|
+
attr_accessor :audio_export_settings
|
4770
|
+
|
4763
4771
|
# [DLP](https://cloud.google.com/dlp/docs) deidentify template name. Use this
|
4764
4772
|
# template to define de-identification configuration for the content. The `DLP
|
4765
4773
|
# De-identify Templates Reader` role is needed on the Dialogflow service
|
@@ -4839,6 +4847,7 @@ module Google
|
|
4839
4847
|
|
4840
4848
|
# Update properties of this object
|
4841
4849
|
def update!(**args)
|
4850
|
+
@audio_export_settings = args[:audio_export_settings] if args.key?(:audio_export_settings)
|
4842
4851
|
@deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template)
|
4843
4852
|
@display_name = args[:display_name] if args.key?(:display_name)
|
4844
4853
|
@insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings)
|
@@ -4851,6 +4860,46 @@ module Google
|
|
4851
4860
|
end
|
4852
4861
|
end
|
4853
4862
|
|
4863
|
+
# Settings for exporting audio.
|
4864
|
+
class GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings
|
4865
|
+
include Google::Apis::Core::Hashable
|
4866
|
+
|
4867
|
+
# Filename pattern for exported audio.
|
4868
|
+
# Corresponds to the JSON property `audioExportPattern`
|
4869
|
+
# @return [String]
|
4870
|
+
attr_accessor :audio_export_pattern
|
4871
|
+
|
4872
|
+
# File format for exported audio file. Currently only in telephony recordings.
|
4873
|
+
# Corresponds to the JSON property `audioFormat`
|
4874
|
+
# @return [String]
|
4875
|
+
attr_accessor :audio_format
|
4876
|
+
|
4877
|
+
# Enable audio redaction if it is true.
|
4878
|
+
# Corresponds to the JSON property `enableAudioRedaction`
|
4879
|
+
# @return [Boolean]
|
4880
|
+
attr_accessor :enable_audio_redaction
|
4881
|
+
alias_method :enable_audio_redaction?, :enable_audio_redaction
|
4882
|
+
|
4883
|
+
# Cloud Storage bucket to export audio record to. You need to grant `service-@
|
4884
|
+
# gcp-sa-dialogflow.iam.gserviceaccount.com` the `Storage Object Admin` role in
|
4885
|
+
# this bucket.
|
4886
|
+
# Corresponds to the JSON property `gcsBucket`
|
4887
|
+
# @return [String]
|
4888
|
+
attr_accessor :gcs_bucket
|
4889
|
+
|
4890
|
+
def initialize(**args)
|
4891
|
+
update!(**args)
|
4892
|
+
end
|
4893
|
+
|
4894
|
+
# Update properties of this object
|
4895
|
+
def update!(**args)
|
4896
|
+
@audio_export_pattern = args[:audio_export_pattern] if args.key?(:audio_export_pattern)
|
4897
|
+
@audio_format = args[:audio_format] if args.key?(:audio_format)
|
4898
|
+
@enable_audio_redaction = args[:enable_audio_redaction] if args.key?(:enable_audio_redaction)
|
4899
|
+
@gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
|
4900
|
+
end
|
4901
|
+
end
|
4902
|
+
|
4854
4903
|
# Settings for exporting conversations to [Insights](https://cloud.google.com/
|
4855
4904
|
# contact-center/insights/docs).
|
4856
4905
|
class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
|
@@ -5568,7 +5617,7 @@ module Google
|
|
5568
5617
|
include Google::Apis::Core::Hashable
|
5569
5618
|
|
5570
5619
|
# Required. The human-readable name of the transition route group, unique within
|
5571
|
-
# the
|
5620
|
+
# the flow. The display name can be no longer than 30 characters.
|
5572
5621
|
# Corresponds to the JSON property `displayName`
|
5573
5622
|
# @return [String]
|
5574
5623
|
attr_accessor :display_name
|
@@ -6164,7 +6213,10 @@ module Google
|
|
6164
6213
|
class GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo
|
6165
6214
|
include Google::Apis::Core::Hashable
|
6166
6215
|
|
6167
|
-
# Always present. The
|
6216
|
+
# Always present. The value of the Fulfillment.tag field will be populated in
|
6217
|
+
# this field by Dialogflow when the associated webhook is called. The tag is
|
6218
|
+
# typically used by the webhook service to identify which fulfillment is being
|
6219
|
+
# called, but it could be used for other purposes.
|
6168
6220
|
# Corresponds to the JSON property `tag`
|
6169
6221
|
# @return [String]
|
6170
6222
|
attr_accessor :tag
|
@@ -7229,8 +7281,11 @@ module Google
|
|
7229
7281
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction>]
|
7230
7282
|
attr_accessor :set_parameter_actions
|
7231
7283
|
|
7232
|
-
# The
|
7233
|
-
#
|
7284
|
+
# The value of this field will be populated in the WebhookRequest `
|
7285
|
+
# fulfillmentInfo.tag` field by Dialogflow when the associated webhook is called.
|
7286
|
+
# The tag is typically used by the webhook service to identify which
|
7287
|
+
# fulfillment is being called, but it could be used for other purposes. This
|
7288
|
+
# field is required if `webhook` is specified.
|
7234
7289
|
# Corresponds to the JSON property `tag`
|
7235
7290
|
# @return [String]
|
7236
7291
|
attr_accessor :tag
|
@@ -7792,7 +7847,7 @@ module Google
|
|
7792
7847
|
class GoogleCloudDialogflowCxV3beta1Page
|
7793
7848
|
include Google::Apis::Core::Hashable
|
7794
7849
|
|
7795
|
-
# Required. The human-readable name of the page, unique within the
|
7850
|
+
# Required. The human-readable name of the page, unique within the flow.
|
7796
7851
|
# Corresponds to the JSON property `displayName`
|
7797
7852
|
# @return [String]
|
7798
7853
|
attr_accessor :display_name
|
@@ -8948,7 +9003,10 @@ module Google
|
|
8948
9003
|
class GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo
|
8949
9004
|
include Google::Apis::Core::Hashable
|
8950
9005
|
|
8951
|
-
# Always present. The
|
9006
|
+
# Always present. The value of the Fulfillment.tag field will be populated in
|
9007
|
+
# this field by Dialogflow when the associated webhook is called. The tag is
|
9008
|
+
# typically used by the webhook service to identify which fulfillment is being
|
9009
|
+
# called, but it could be used for other purposes.
|
8952
9010
|
# Corresponds to the JSON property `tag`
|
8953
9011
|
# @return [String]
|
8954
9012
|
attr_accessor :tag
|
@@ -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.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220422"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -808,6 +808,12 @@ module Google
|
|
808
808
|
include Google::Apis::Core::JsonObjectSupport
|
809
809
|
end
|
810
810
|
|
811
|
+
class GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings
|
812
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
813
|
+
|
814
|
+
include Google::Apis::Core::JsonObjectSupport
|
815
|
+
end
|
816
|
+
|
811
817
|
class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
|
812
818
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
813
819
|
|
@@ -3872,6 +3878,8 @@ module Google
|
|
3872
3878
|
class GoogleCloudDialogflowCxV3SecuritySettings
|
3873
3879
|
# @private
|
3874
3880
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3881
|
+
property :audio_export_settings, as: 'audioExportSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings::Representation
|
3882
|
+
|
3875
3883
|
property :deidentify_template, as: 'deidentifyTemplate'
|
3876
3884
|
property :display_name, as: 'displayName'
|
3877
3885
|
property :insights_export_settings, as: 'insightsExportSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings::Representation
|
@@ -3885,6 +3893,16 @@ module Google
|
|
3885
3893
|
end
|
3886
3894
|
end
|
3887
3895
|
|
3896
|
+
class GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings
|
3897
|
+
# @private
|
3898
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3899
|
+
property :audio_export_pattern, as: 'audioExportPattern'
|
3900
|
+
property :audio_format, as: 'audioFormat'
|
3901
|
+
property :enable_audio_redaction, as: 'enableAudioRedaction'
|
3902
|
+
property :gcs_bucket, as: 'gcsBucket'
|
3903
|
+
end
|
3904
|
+
end
|
3905
|
+
|
3888
3906
|
class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
|
3889
3907
|
# @private
|
3890
3908
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -85,8 +85,8 @@ module Google
|
|
85
85
|
# The resource that owns the locations collection, if applicable.
|
86
86
|
# @param [String] filter
|
87
87
|
# A filter to narrow down results to a preferred subset. The filtering language
|
88
|
-
# accepts strings like "displayName=tokyo"
|
89
|
-
# AIP-160](https://google.aip.dev/160).
|
88
|
+
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
89
|
+
# in [AIP-160](https://google.aip.dev/160).
|
90
90
|
# @param [Fixnum] page_size
|
91
91
|
# The maximum number of results to return. If not set, the service selects a
|
92
92
|
# default.
|
@@ -3553,7 +3553,7 @@ module Google
|
|
3553
3553
|
end
|
3554
3554
|
|
3555
3555
|
# Imports the test cases from a Cloud Storage bucket or a local file. It always
|
3556
|
-
# creates new test cases and won't
|
3556
|
+
# creates new test cases and won't overwrite any existing ones. The provided ID
|
3557
3557
|
# in the imported test case is neglected. This method is a [long-running
|
3558
3558
|
# operation](https://cloud.google.com/dialogflow/cx/docs/how/long-running-
|
3559
3559
|
# operation). The returned `Operation` type has the following method-specific
|
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.33.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: 2022-
|
11
|
+
date: 2022-05-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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.33.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: []
|