google-apis-dialogflow_v3beta1 0.34.0 → 0.35.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: 4935fb08ff096710e9ac14777851b81e195fde078fb9f58da1217a114fba2abf
4
- data.tar.gz: f696b223956a6c5d12bde8dee5e426f930e9f7d92ed7374d9ffc3221291120f4
3
+ metadata.gz: 2986a8f06ec3cbc7cf861b391333a45198bdf0b4027ec9bdcc631b7ea66af2ad
4
+ data.tar.gz: bf20647fe9fdb773a8fa19ed89416f3d9156a22d78805e4bd01b26ec1a1cdfec
5
5
  SHA512:
6
- metadata.gz: 2f66f6736c0ed4e12b6758470261c3a639ca3262ea0c995efc7c1811c766e566b9e2cb3bac2bbd1f94dc7d1e8eb2098899f9420495ea49c0121c0fe3db7bec52
7
- data.tar.gz: 0f1a6a849e4855309799f30ca63571131da72e7ad4d1ac534f66358c5ef86d192ac3f3a02644a4c7531a10c1457c11336da98a1850c686ee0b4f6ef7f0efa571
6
+ metadata.gz: aa0d9eaa226220b5ee5a60e3b4c2f9ec3f85262f07cdedfc832d3e16da23d053ac6ee9f85d17a4397fe2df4d7139b330ed4d52664194c1926657597e180be797
7
+ data.tar.gz: 21f6d1518276f6356abffb55292764274915662f5f6c088334ce309141c3aa28c23248f5a2c3248801631f0227fd6cecd7a07e0af31abeefe4948fb24719dc2f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.35.0 (2022-04-29)
4
+
5
+ * Regenerated from discovery document revision 20220422
6
+
3
7
  ### v0.34.0 (2022-04-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20220411
@@ -7524,6 +7524,11 @@ module Google
7524
7524
  class GoogleCloudDialogflowCxV3beta1SecuritySettings
7525
7525
  include Google::Apis::Core::Hashable
7526
7526
 
7527
+ # Settings for exporting audio.
7528
+ # Corresponds to the JSON property `audioExportSettings`
7529
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings]
7530
+ attr_accessor :audio_export_settings
7531
+
7527
7532
  # [DLP](https://cloud.google.com/dlp/docs) deidentify template name. Use this
7528
7533
  # template to define de-identification configuration for the content. The `DLP
7529
7534
  # De-identify Templates Reader` role is needed on the Dialogflow service
@@ -7603,6 +7608,7 @@ module Google
7603
7608
 
7604
7609
  # Update properties of this object
7605
7610
  def update!(**args)
7611
+ @audio_export_settings = args[:audio_export_settings] if args.key?(:audio_export_settings)
7606
7612
  @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template)
7607
7613
  @display_name = args[:display_name] if args.key?(:display_name)
7608
7614
  @insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings)
@@ -7615,6 +7621,46 @@ module Google
7615
7621
  end
7616
7622
  end
7617
7623
 
7624
+ # Settings for exporting audio.
7625
+ class GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
7626
+ include Google::Apis::Core::Hashable
7627
+
7628
+ # Filename pattern for exported audio.
7629
+ # Corresponds to the JSON property `audioExportPattern`
7630
+ # @return [String]
7631
+ attr_accessor :audio_export_pattern
7632
+
7633
+ # File format for exported audio file. Currently only in telephony recordings.
7634
+ # Corresponds to the JSON property `audioFormat`
7635
+ # @return [String]
7636
+ attr_accessor :audio_format
7637
+
7638
+ # Enable audio redaction if it is true.
7639
+ # Corresponds to the JSON property `enableAudioRedaction`
7640
+ # @return [Boolean]
7641
+ attr_accessor :enable_audio_redaction
7642
+ alias_method :enable_audio_redaction?, :enable_audio_redaction
7643
+
7644
+ # Cloud Storage bucket to export audio record to. You need to grant `service-@
7645
+ # gcp-sa-dialogflow.iam.gserviceaccount.com` the `Storage Object Admin` role in
7646
+ # this bucket.
7647
+ # Corresponds to the JSON property `gcsBucket`
7648
+ # @return [String]
7649
+ attr_accessor :gcs_bucket
7650
+
7651
+ def initialize(**args)
7652
+ update!(**args)
7653
+ end
7654
+
7655
+ # Update properties of this object
7656
+ def update!(**args)
7657
+ @audio_export_pattern = args[:audio_export_pattern] if args.key?(:audio_export_pattern)
7658
+ @audio_format = args[:audio_format] if args.key?(:audio_format)
7659
+ @enable_audio_redaction = args[:enable_audio_redaction] if args.key?(:enable_audio_redaction)
7660
+ @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
7661
+ end
7662
+ end
7663
+
7618
7664
  # Settings for exporting conversations to [Insights](https://cloud.google.com/
7619
7665
  # contact-center/insights/docs).
7620
7666
  class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV3beta1
18
18
  # Version of the google-apis-dialogflow_v3beta1 gem
19
- GEM_VERSION = "0.34.0"
19
+ GEM_VERSION = "0.35.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 = "20220411"
25
+ REVISION = "20220422"
26
26
  end
27
27
  end
28
28
  end
@@ -1282,6 +1282,12 @@ module Google
1282
1282
  include Google::Apis::Core::JsonObjectSupport
1283
1283
  end
1284
1284
 
1285
+ class GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
1286
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1287
+
1288
+ include Google::Apis::Core::JsonObjectSupport
1289
+ end
1290
+
1285
1291
  class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
1286
1292
  class Representation < Google::Apis::Core::JsonRepresentation; end
1287
1293
 
@@ -4642,6 +4648,8 @@ module Google
4642
4648
  class GoogleCloudDialogflowCxV3beta1SecuritySettings
4643
4649
  # @private
4644
4650
  class Representation < Google::Apis::Core::JsonRepresentation
4651
+ property :audio_export_settings, as: 'audioExportSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings::Representation
4652
+
4645
4653
  property :deidentify_template, as: 'deidentifyTemplate'
4646
4654
  property :display_name, as: 'displayName'
4647
4655
  property :insights_export_settings, as: 'insightsExportSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings::Representation
@@ -4655,6 +4663,16 @@ module Google
4655
4663
  end
4656
4664
  end
4657
4665
 
4666
+ class GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
4667
+ # @private
4668
+ class Representation < Google::Apis::Core::JsonRepresentation
4669
+ property :audio_export_pattern, as: 'audioExportPattern'
4670
+ property :audio_format, as: 'audioFormat'
4671
+ property :enable_audio_redaction, as: 'enableAudioRedaction'
4672
+ property :gcs_bucket, as: 'gcsBucket'
4673
+ end
4674
+ end
4675
+
4658
4676
  class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
4659
4677
  # @private
4660
4678
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.0
4
+ version: 0.35.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-04-18 00:00:00.000000000 Z
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_v3beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.35.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
63
63
  post_install_message:
64
64
  rdoc_options: []