google-apis-dialogflow_v3 0.32.0 → 0.33.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: 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
@@ -4763,6 +4763,11 @@ module Google
|
|
4763
4763
|
class GoogleCloudDialogflowCxV3SecuritySettings
|
4764
4764
|
include Google::Apis::Core::Hashable
|
4765
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
|
+
|
4766
4771
|
# [DLP](https://cloud.google.com/dlp/docs) deidentify template name. Use this
|
4767
4772
|
# template to define de-identification configuration for the content. The `DLP
|
4768
4773
|
# De-identify Templates Reader` role is needed on the Dialogflow service
|
@@ -4842,6 +4847,7 @@ module Google
|
|
4842
4847
|
|
4843
4848
|
# Update properties of this object
|
4844
4849
|
def update!(**args)
|
4850
|
+
@audio_export_settings = args[:audio_export_settings] if args.key?(:audio_export_settings)
|
4845
4851
|
@deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template)
|
4846
4852
|
@display_name = args[:display_name] if args.key?(:display_name)
|
4847
4853
|
@insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings)
|
@@ -4854,6 +4860,46 @@ module Google
|
|
4854
4860
|
end
|
4855
4861
|
end
|
4856
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
|
+
|
4857
4903
|
# Settings for exporting conversations to [Insights](https://cloud.google.com/
|
4858
4904
|
# contact-center/insights/docs).
|
4859
4905
|
class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
|
@@ -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
|
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: []
|