google-apis-dialogflow_v2beta1 0.69.0 → 0.71.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: cc48e1b1757561bdf6e1d745f73d8c19da90d2c957cd7350e793a8a7ee7b87b6
4
- data.tar.gz: 771ffb473dd0532bd9a17acbb129fd3442d45856ccdeaf7b10752ba4c368b423
3
+ metadata.gz: 04d5aec59d1b4df248b3383fdcfea3c129aa7fd256768a81cca097bb75c08646
4
+ data.tar.gz: febd79996597ecfad8aac197d8b38b124841a1631d2494d7fe151f14c45f3133
5
5
  SHA512:
6
- metadata.gz: 315aae6b53dd7eccf635969218a0463624e6fa2a0cbd6e689cd94ee0ff8672ffbbeeb290de49cbc610f4fc84e241cb92902e3024fa31e4a144da2c1978cd4333
7
- data.tar.gz: 02d0f4551d21a8efbd97d2cdead0a3de6acaab2d5da08421ef6765f1daab123e467a3d8d7b1506de8dd26a86ab1ae03e1335a6aba830a26cfbfa35c035faddf4
6
+ metadata.gz: e1c019db7661849c7c45d9c3946f3c1089c379c5d4e665be04307c8fa4c5ac8e72ac113932310c01afaba9fc3f95a732534d6553a138c06a156b185f2fcf4121
7
+ data.tar.gz: 1630af0d7ca1b2017cc9c96c79ef6ed9a74a634eadefd8ad0e209061a15f6e4e232665287c40c0d9ab174a273246cfba4c503612489e894840fe6366d0a2285f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.71.0 (2023-11-19)
4
+
5
+ * Regenerated from discovery document revision 20231109
6
+
7
+ ### v0.70.0 (2023-10-29)
8
+
9
+ * Regenerated from discovery document revision 20231019
10
+
3
11
  ### v0.69.0 (2023-09-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20230919
@@ -155,6 +155,49 @@ module Google
155
155
  end
156
156
  end
157
157
 
158
+ # Configuration of the barge-in behavior. Barge-in instructs the API to return a
159
+ # detected utterance at a proper time while the client is playing back the
160
+ # response audio from a previous request. When the client sees the utterance, it
161
+ # should stop the playback and immediately get ready for receiving the responses
162
+ # for the current request. The barge-in handling requires the client to start
163
+ # streaming audio input as soon as it starts playing back the audio from the
164
+ # previous response. The playback is modeled into two phases: * No barge-in
165
+ # phase: which goes first and during which speech detection should not be
166
+ # carried out. * Barge-in phase: which follows the no barge-in phase and during
167
+ # which the API starts speech detection and may inform the client that an
168
+ # utterance has been detected. Note that no-speech event is not expected in this
169
+ # phase. The client provides this configuration in terms of the durations of
170
+ # those two phases. The durations are measured in terms of the audio length
171
+ # fromt the the start of the input audio. The flow goes like below: --> Time
172
+ # without speech detection | utterance only | utterance or no-speech event | | +-
173
+ # ------------+ | +------------+ | +---------------+ ----------+ no barge-in +-|-
174
+ # + barge-in +-|-+ normal period +----------- +-------------+ | +------------+ |
175
+ # +---------------+ No-speech event is a response with END_OF_UTTERANCE without
176
+ # any transcript following up.
177
+ class GoogleCloudDialogflowCxV3BargeInConfig
178
+ include Google::Apis::Core::Hashable
179
+
180
+ # Duration that is not eligible for barge-in at the beginning of the input audio.
181
+ # Corresponds to the JSON property `noBargeInDuration`
182
+ # @return [String]
183
+ attr_accessor :no_barge_in_duration
184
+
185
+ # Total duration for the playback at the beginning of the input audio.
186
+ # Corresponds to the JSON property `totalDuration`
187
+ # @return [String]
188
+ attr_accessor :total_duration
189
+
190
+ def initialize(**args)
191
+ update!(**args)
192
+ end
193
+
194
+ # Update properties of this object
195
+ def update!(**args)
196
+ @no_barge_in_duration = args[:no_barge_in_duration] if args.key?(:no_barge_in_duration)
197
+ @total_duration = args[:total_duration] if args.key?(:total_duration)
198
+ end
199
+ end
200
+
158
201
  # Metadata returned for the TestCases.BatchRunTestCases long running operation.
159
202
  class GoogleCloudDialogflowCxV3BatchRunTestCasesMetadata
160
203
  include Google::Apis::Core::Hashable
@@ -1512,6 +1555,29 @@ module Google
1512
1555
  # @return [String]
1513
1556
  attr_accessor :audio_encoding
1514
1557
 
1558
+ # Configuration of the barge-in behavior. Barge-in instructs the API to return a
1559
+ # detected utterance at a proper time while the client is playing back the
1560
+ # response audio from a previous request. When the client sees the utterance, it
1561
+ # should stop the playback and immediately get ready for receiving the responses
1562
+ # for the current request. The barge-in handling requires the client to start
1563
+ # streaming audio input as soon as it starts playing back the audio from the
1564
+ # previous response. The playback is modeled into two phases: * No barge-in
1565
+ # phase: which goes first and during which speech detection should not be
1566
+ # carried out. * Barge-in phase: which follows the no barge-in phase and during
1567
+ # which the API starts speech detection and may inform the client that an
1568
+ # utterance has been detected. Note that no-speech event is not expected in this
1569
+ # phase. The client provides this configuration in terms of the durations of
1570
+ # those two phases. The durations are measured in terms of the audio length
1571
+ # fromt the the start of the input audio. The flow goes like below: --> Time
1572
+ # without speech detection | utterance only | utterance or no-speech event | | +-
1573
+ # ------------+ | +------------+ | +---------------+ ----------+ no barge-in +-|-
1574
+ # + barge-in +-|-+ normal period +----------- +-------------+ | +------------+ |
1575
+ # +---------------+ No-speech event is a response with END_OF_UTTERANCE without
1576
+ # any transcript following up.
1577
+ # Corresponds to the JSON property `bargeInConfig`
1578
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3BargeInConfig]
1579
+ attr_accessor :barge_in_config
1580
+
1515
1581
  # Optional. If `true`, Dialogflow returns SpeechWordInfo in
1516
1582
  # StreamingRecognitionResult with information about the recognized speech words,
1517
1583
  # e.g. start and end time offsets. If false or unspecified, Speech doesn't
@@ -1574,6 +1640,7 @@ module Google
1574
1640
  # Update properties of this object
1575
1641
  def update!(**args)
1576
1642
  @audio_encoding = args[:audio_encoding] if args.key?(:audio_encoding)
1643
+ @barge_in_config = args[:barge_in_config] if args.key?(:barge_in_config)
1577
1644
  @enable_word_info = args[:enable_word_info] if args.key?(:enable_word_info)
1578
1645
  @model = args[:model] if args.key?(:model)
1579
1646
  @model_variant = args[:model_variant] if args.key?(:model_variant)
@@ -3673,6 +3740,49 @@ module Google
3673
3740
  end
3674
3741
  end
3675
3742
 
3743
+ # Configuration of the barge-in behavior. Barge-in instructs the API to return a
3744
+ # detected utterance at a proper time while the client is playing back the
3745
+ # response audio from a previous request. When the client sees the utterance, it
3746
+ # should stop the playback and immediately get ready for receiving the responses
3747
+ # for the current request. The barge-in handling requires the client to start
3748
+ # streaming audio input as soon as it starts playing back the audio from the
3749
+ # previous response. The playback is modeled into two phases: * No barge-in
3750
+ # phase: which goes first and during which speech detection should not be
3751
+ # carried out. * Barge-in phase: which follows the no barge-in phase and during
3752
+ # which the API starts speech detection and may inform the client that an
3753
+ # utterance has been detected. Note that no-speech event is not expected in this
3754
+ # phase. The client provides this configuration in terms of the durations of
3755
+ # those two phases. The durations are measured in terms of the audio length
3756
+ # fromt the the start of the input audio. The flow goes like below: --> Time
3757
+ # without speech detection | utterance only | utterance or no-speech event | | +-
3758
+ # ------------+ | +------------+ | +---------------+ ----------+ no barge-in +-|-
3759
+ # + barge-in +-|-+ normal period +----------- +-------------+ | +------------+ |
3760
+ # +---------------+ No-speech event is a response with END_OF_UTTERANCE without
3761
+ # any transcript following up.
3762
+ class GoogleCloudDialogflowCxV3beta1BargeInConfig
3763
+ include Google::Apis::Core::Hashable
3764
+
3765
+ # Duration that is not eligible for barge-in at the beginning of the input audio.
3766
+ # Corresponds to the JSON property `noBargeInDuration`
3767
+ # @return [String]
3768
+ attr_accessor :no_barge_in_duration
3769
+
3770
+ # Total duration for the playback at the beginning of the input audio.
3771
+ # Corresponds to the JSON property `totalDuration`
3772
+ # @return [String]
3773
+ attr_accessor :total_duration
3774
+
3775
+ def initialize(**args)
3776
+ update!(**args)
3777
+ end
3778
+
3779
+ # Update properties of this object
3780
+ def update!(**args)
3781
+ @no_barge_in_duration = args[:no_barge_in_duration] if args.key?(:no_barge_in_duration)
3782
+ @total_duration = args[:total_duration] if args.key?(:total_duration)
3783
+ end
3784
+ end
3785
+
3676
3786
  # Metadata returned for the TestCases.BatchRunTestCases long running operation.
3677
3787
  class GoogleCloudDialogflowCxV3beta1BatchRunTestCasesMetadata
3678
3788
  include Google::Apis::Core::Hashable
@@ -5030,6 +5140,29 @@ module Google
5030
5140
  # @return [String]
5031
5141
  attr_accessor :audio_encoding
5032
5142
 
5143
+ # Configuration of the barge-in behavior. Barge-in instructs the API to return a
5144
+ # detected utterance at a proper time while the client is playing back the
5145
+ # response audio from a previous request. When the client sees the utterance, it
5146
+ # should stop the playback and immediately get ready for receiving the responses
5147
+ # for the current request. The barge-in handling requires the client to start
5148
+ # streaming audio input as soon as it starts playing back the audio from the
5149
+ # previous response. The playback is modeled into two phases: * No barge-in
5150
+ # phase: which goes first and during which speech detection should not be
5151
+ # carried out. * Barge-in phase: which follows the no barge-in phase and during
5152
+ # which the API starts speech detection and may inform the client that an
5153
+ # utterance has been detected. Note that no-speech event is not expected in this
5154
+ # phase. The client provides this configuration in terms of the durations of
5155
+ # those two phases. The durations are measured in terms of the audio length
5156
+ # fromt the the start of the input audio. The flow goes like below: --> Time
5157
+ # without speech detection | utterance only | utterance or no-speech event | | +-
5158
+ # ------------+ | +------------+ | +---------------+ ----------+ no barge-in +-|-
5159
+ # + barge-in +-|-+ normal period +----------- +-------------+ | +------------+ |
5160
+ # +---------------+ No-speech event is a response with END_OF_UTTERANCE without
5161
+ # any transcript following up.
5162
+ # Corresponds to the JSON property `bargeInConfig`
5163
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1BargeInConfig]
5164
+ attr_accessor :barge_in_config
5165
+
5033
5166
  # Optional. If `true`, Dialogflow returns SpeechWordInfo in
5034
5167
  # StreamingRecognitionResult with information about the recognized speech words,
5035
5168
  # e.g. start and end time offsets. If false or unspecified, Speech doesn't
@@ -5092,6 +5225,7 @@ module Google
5092
5225
  # Update properties of this object
5093
5226
  def update!(**args)
5094
5227
  @audio_encoding = args[:audio_encoding] if args.key?(:audio_encoding)
5228
+ @barge_in_config = args[:barge_in_config] if args.key?(:barge_in_config)
5095
5229
  @enable_word_info = args[:enable_word_info] if args.key?(:enable_word_info)
5096
5230
  @model = args[:model] if args.key?(:model)
5097
5231
  @model_variant = args[:model_variant] if args.key?(:model_variant)
@@ -7570,6 +7704,37 @@ module Google
7570
7704
  end
7571
7705
  end
7572
7706
 
7707
+ # A customer-managed encryption key specification that can be applied to all
7708
+ # created resources (e.g. Conversation).
7709
+ class GoogleCloudDialogflowV2EncryptionSpec
7710
+ include Google::Apis::Core::Hashable
7711
+
7712
+ # Required. The name of customer-managed encryption key that is used to secure a
7713
+ # resource and its sub-resources. If empty, the resource is secured by the
7714
+ # default Google encryption key. Only the key in the same location as this
7715
+ # resource is allowed to be used for encryption. Format: `projects/`project`/
7716
+ # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
7717
+ # Corresponds to the JSON property `kmsKey`
7718
+ # @return [String]
7719
+ attr_accessor :kms_key
7720
+
7721
+ # Immutable. The resource name of the encryption key specification resource.
7722
+ # Format: projects/`project`/locations/`location`/encryptionSpec
7723
+ # Corresponds to the JSON property `name`
7724
+ # @return [String]
7725
+ attr_accessor :name
7726
+
7727
+ def initialize(**args)
7728
+ update!(**args)
7729
+ end
7730
+
7731
+ # Update properties of this object
7732
+ def update!(**args)
7733
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
7734
+ @name = args[:name] if args.key?(:name)
7735
+ end
7736
+ end
7737
+
7573
7738
  # Each intent parameter has a type, called the entity type, which dictates
7574
7739
  # exactly how data from an end-user expression is extracted. Dialogflow provides
7575
7740
  # predefined system entities that can match many common types of data. For
@@ -7944,6 +8109,45 @@ module Google
7944
8109
  end
7945
8110
  end
7946
8111
 
8112
+ # Metadata for initializing a location-level encryption specification.
8113
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
8114
+ include Google::Apis::Core::Hashable
8115
+
8116
+ # The request to initialize a location-level encryption specification.
8117
+ # Corresponds to the JSON property `request`
8118
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest]
8119
+ attr_accessor :request
8120
+
8121
+ def initialize(**args)
8122
+ update!(**args)
8123
+ end
8124
+
8125
+ # Update properties of this object
8126
+ def update!(**args)
8127
+ @request = args[:request] if args.key?(:request)
8128
+ end
8129
+ end
8130
+
8131
+ # The request to initialize a location-level encryption specification.
8132
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
8133
+ include Google::Apis::Core::Hashable
8134
+
8135
+ # A customer-managed encryption key specification that can be applied to all
8136
+ # created resources (e.g. Conversation).
8137
+ # Corresponds to the JSON property `encryptionSpec`
8138
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec]
8139
+ attr_accessor :encryption_spec
8140
+
8141
+ def initialize(**args)
8142
+ update!(**args)
8143
+ end
8144
+
8145
+ # Update properties of this object
8146
+ def update!(**args)
8147
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
8148
+ end
8149
+ end
8150
+
7947
8151
  # InputDataset used to create model or do evaluation. NextID:5
7948
8152
  class GoogleCloudDialogflowV2InputDataset
7949
8153
  include Google::Apis::Core::Hashable
@@ -11958,6 +12162,37 @@ module Google
11958
12162
  end
11959
12163
  end
11960
12164
 
12165
+ # A customer-managed encryption key specification that can be applied to all
12166
+ # created resources (e.g. Conversation).
12167
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
12168
+ include Google::Apis::Core::Hashable
12169
+
12170
+ # Required. The name of customer-managed encryption key that is used to secure a
12171
+ # resource and its sub-resources. If empty, the resource is secured by the
12172
+ # default Google encryption key. Only the key in the same location as this
12173
+ # resource is allowed to be used for encryption. Format: `projects/`project`/
12174
+ # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
12175
+ # Corresponds to the JSON property `kmsKey`
12176
+ # @return [String]
12177
+ attr_accessor :kms_key
12178
+
12179
+ # Immutable. The resource name of the encryption key specification resource.
12180
+ # Format: projects/`project`/locations/`location`/encryptionSpec
12181
+ # Corresponds to the JSON property `name`
12182
+ # @return [String]
12183
+ attr_accessor :name
12184
+
12185
+ def initialize(**args)
12186
+ update!(**args)
12187
+ end
12188
+
12189
+ # Update properties of this object
12190
+ def update!(**args)
12191
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
12192
+ @name = args[:name] if args.key?(:name)
12193
+ end
12194
+ end
12195
+
11961
12196
  # Each intent parameter has a type, called the entity type, which dictates
11962
12197
  # exactly how data from an end-user expression is extracted. Dialogflow provides
11963
12198
  # predefined system entities that can match many common types of data. For
@@ -13390,6 +13625,45 @@ module Google
13390
13625
  end
13391
13626
  end
13392
13627
 
13628
+ # Metadata for initializing a location-level encryption specification.
13629
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
13630
+ include Google::Apis::Core::Hashable
13631
+
13632
+ # The request to initialize a location-level encryption specification.
13633
+ # Corresponds to the JSON property `request`
13634
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest]
13635
+ attr_accessor :request
13636
+
13637
+ def initialize(**args)
13638
+ update!(**args)
13639
+ end
13640
+
13641
+ # Update properties of this object
13642
+ def update!(**args)
13643
+ @request = args[:request] if args.key?(:request)
13644
+ end
13645
+ end
13646
+
13647
+ # The request to initialize a location-level encryption specification.
13648
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
13649
+ include Google::Apis::Core::Hashable
13650
+
13651
+ # A customer-managed encryption key specification that can be applied to all
13652
+ # created resources (e.g. Conversation).
13653
+ # Corresponds to the JSON property `encryptionSpec`
13654
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec]
13655
+ attr_accessor :encryption_spec
13656
+
13657
+ def initialize(**args)
13658
+ update!(**args)
13659
+ end
13660
+
13661
+ # Update properties of this object
13662
+ def update!(**args)
13663
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
13664
+ end
13665
+ end
13666
+
13393
13667
  # Instructs the speech recognizer on how to process the audio content.
13394
13668
  class GoogleCloudDialogflowV2beta1InputAudioConfig
13395
13669
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2beta1
18
18
  # Version of the google-apis-dialogflow_v2beta1 gem
19
- GEM_VERSION = "0.69.0"
19
+ GEM_VERSION = "0.71.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230919"
25
+ REVISION = "20231109"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class GoogleCloudDialogflowCxV3BargeInConfig
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class GoogleCloudDialogflowCxV3BatchRunTestCasesMetadata
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -634,6 +640,12 @@ module Google
634
640
  include Google::Apis::Core::JsonObjectSupport
635
641
  end
636
642
 
643
+ class GoogleCloudDialogflowCxV3beta1BargeInConfig
644
+ class Representation < Google::Apis::Core::JsonRepresentation; end
645
+
646
+ include Google::Apis::Core::JsonObjectSupport
647
+ end
648
+
637
649
  class GoogleCloudDialogflowCxV3beta1BatchRunTestCasesMetadata
638
650
  class Representation < Google::Apis::Core::JsonRepresentation; end
639
651
 
@@ -1288,6 +1300,12 @@ module Google
1288
1300
  include Google::Apis::Core::JsonObjectSupport
1289
1301
  end
1290
1302
 
1303
+ class GoogleCloudDialogflowV2EncryptionSpec
1304
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1305
+
1306
+ include Google::Apis::Core::JsonObjectSupport
1307
+ end
1308
+
1291
1309
  class GoogleCloudDialogflowV2EntityType
1292
1310
  class Representation < Google::Apis::Core::JsonRepresentation; end
1293
1311
 
@@ -1354,6 +1372,18 @@ module Google
1354
1372
  include Google::Apis::Core::JsonObjectSupport
1355
1373
  end
1356
1374
 
1375
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
1376
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1377
+
1378
+ include Google::Apis::Core::JsonObjectSupport
1379
+ end
1380
+
1381
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
1382
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1383
+
1384
+ include Google::Apis::Core::JsonObjectSupport
1385
+ end
1386
+
1357
1387
  class GoogleCloudDialogflowV2InputDataset
1358
1388
  class Representation < Google::Apis::Core::JsonRepresentation; end
1359
1389
 
@@ -1930,6 +1960,12 @@ module Google
1930
1960
  include Google::Apis::Core::JsonObjectSupport
1931
1961
  end
1932
1962
 
1963
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
1964
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1965
+
1966
+ include Google::Apis::Core::JsonObjectSupport
1967
+ end
1968
+
1933
1969
  class GoogleCloudDialogflowV2beta1EntityType
1934
1970
  class Representation < Google::Apis::Core::JsonRepresentation; end
1935
1971
 
@@ -2182,6 +2218,18 @@ module Google
2182
2218
  include Google::Apis::Core::JsonObjectSupport
2183
2219
  end
2184
2220
 
2221
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
2222
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2223
+
2224
+ include Google::Apis::Core::JsonObjectSupport
2225
+ end
2226
+
2227
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
2228
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2229
+
2230
+ include Google::Apis::Core::JsonObjectSupport
2231
+ end
2232
+
2185
2233
  class GoogleCloudDialogflowV2beta1InputAudioConfig
2186
2234
  class Representation < Google::Apis::Core::JsonRepresentation; end
2187
2235
 
@@ -3102,6 +3150,14 @@ module Google
3102
3150
  end
3103
3151
  end
3104
3152
 
3153
+ class GoogleCloudDialogflowCxV3BargeInConfig
3154
+ # @private
3155
+ class Representation < Google::Apis::Core::JsonRepresentation
3156
+ property :no_barge_in_duration, as: 'noBargeInDuration'
3157
+ property :total_duration, as: 'totalDuration'
3158
+ end
3159
+ end
3160
+
3105
3161
  class GoogleCloudDialogflowCxV3BatchRunTestCasesMetadata
3106
3162
  # @private
3107
3163
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3509,6 +3565,8 @@ module Google
3509
3565
  # @private
3510
3566
  class Representation < Google::Apis::Core::JsonRepresentation
3511
3567
  property :audio_encoding, as: 'audioEncoding'
3568
+ property :barge_in_config, as: 'bargeInConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3BargeInConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3BargeInConfig::Representation
3569
+
3512
3570
  property :enable_word_info, as: 'enableWordInfo'
3513
3571
  property :model, as: 'model'
3514
3572
  property :model_variant, as: 'modelVariant'
@@ -4068,6 +4126,14 @@ module Google
4068
4126
  end
4069
4127
  end
4070
4128
 
4129
+ class GoogleCloudDialogflowCxV3beta1BargeInConfig
4130
+ # @private
4131
+ class Representation < Google::Apis::Core::JsonRepresentation
4132
+ property :no_barge_in_duration, as: 'noBargeInDuration'
4133
+ property :total_duration, as: 'totalDuration'
4134
+ end
4135
+ end
4136
+
4071
4137
  class GoogleCloudDialogflowCxV3beta1BatchRunTestCasesMetadata
4072
4138
  # @private
4073
4139
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4475,6 +4541,8 @@ module Google
4475
4541
  # @private
4476
4542
  class Representation < Google::Apis::Core::JsonRepresentation
4477
4543
  property :audio_encoding, as: 'audioEncoding'
4544
+ property :barge_in_config, as: 'bargeInConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1BargeInConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1BargeInConfig::Representation
4545
+
4478
4546
  property :enable_word_info, as: 'enableWordInfo'
4479
4547
  property :model, as: 'model'
4480
4548
  property :model_variant, as: 'modelVariant'
@@ -5135,6 +5203,14 @@ module Google
5135
5203
  end
5136
5204
  end
5137
5205
 
5206
+ class GoogleCloudDialogflowV2EncryptionSpec
5207
+ # @private
5208
+ class Representation < Google::Apis::Core::JsonRepresentation
5209
+ property :kms_key, as: 'kmsKey'
5210
+ property :name, as: 'name'
5211
+ end
5212
+ end
5213
+
5138
5214
  class GoogleCloudDialogflowV2EntityType
5139
5215
  # @private
5140
5216
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5236,6 +5312,22 @@ module Google
5236
5312
  end
5237
5313
  end
5238
5314
 
5315
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
5316
+ # @private
5317
+ class Representation < Google::Apis::Core::JsonRepresentation
5318
+ property :request, as: 'request', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest::Representation
5319
+
5320
+ end
5321
+ end
5322
+
5323
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
5324
+ # @private
5325
+ class Representation < Google::Apis::Core::JsonRepresentation
5326
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec::Representation
5327
+
5328
+ end
5329
+ end
5330
+
5239
5331
  class GoogleCloudDialogflowV2InputDataset
5240
5332
  # @private
5241
5333
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6299,6 +6391,14 @@ module Google
6299
6391
  end
6300
6392
  end
6301
6393
 
6394
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
6395
+ # @private
6396
+ class Representation < Google::Apis::Core::JsonRepresentation
6397
+ property :kms_key, as: 'kmsKey'
6398
+ property :name, as: 'name'
6399
+ end
6400
+ end
6401
+
6302
6402
  class GoogleCloudDialogflowV2beta1EntityType
6303
6403
  # @private
6304
6404
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6697,6 +6797,22 @@ module Google
6697
6797
  end
6698
6798
  end
6699
6799
 
6800
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
6801
+ # @private
6802
+ class Representation < Google::Apis::Core::JsonRepresentation
6803
+ property :request, as: 'request', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest::Representation
6804
+
6805
+ end
6806
+ end
6807
+
6808
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
6809
+ # @private
6810
+ class Representation < Google::Apis::Core::JsonRepresentation
6811
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec::Representation
6812
+
6813
+ end
6814
+ end
6815
+
6700
6816
  class GoogleCloudDialogflowV2beta1InputAudioConfig
6701
6817
  # @private
6702
6818
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.69.0
4
+ version: 0.71.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: 2023-09-24 00:00:00.000000000 Z
11
+ date: 2023-11-19 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_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.69.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.71.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
63
63
  post_install_message:
64
64
  rdoc_options: []