google-apis-dialogflow_v2 0.70.0 → 0.72.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: e0cbc7f4ae70c245c4a337b5c7ec9602e3bfbff450ddf07a52fb14846528404f
4
- data.tar.gz: a91f54904407968b8fd878b0fe69f5de358b2dd607fb5727bb83713977ef74f8
3
+ metadata.gz: a8dba1540e54c59774910e8f9c3ee28bd42de2bb6ed814228e736a17dcbd0afa
4
+ data.tar.gz: 9dc797324e777face90a73d76351a017828a0589d1516c714b3c1c4231d3effb
5
5
  SHA512:
6
- metadata.gz: c72f5e0dc20076fd40314edae733e9c432a676e9786853c1187574fa86d347e3d70f9b16f191d82c13ddcb701516b20f8e607366111478957e5bccbff5632211
7
- data.tar.gz: 9f82bc14518436edbddbcedaf93ef9b2b3ae2f87fb4bd2305d14eb0afa8c49bd9dba1eb82676bd8bf083dedb948c6536d3ad55b51d377730ae3a93fb6eabc148
6
+ metadata.gz: a91da83321bbfba77b1415d7ddf04682061138c8c3545318622c7d310ddf4f1cb63580f898b6e4362c4126f90b427e303ec8d5a9fc802e9521fd9a56a54a33dc
7
+ data.tar.gz: 61d89509ce8f28f46aa1c9ee48ce2783e1ebf8d2962933604f3aa7ccccdb7ac6e7832a7b394706bfcf5f93b312a29b6f3b515402517a23229f7a165d9ba340ae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.72.0 (2023-11-19)
4
+
5
+ * Regenerated from discovery document revision 20231109
6
+
7
+ ### v0.71.0 (2023-10-29)
8
+
9
+ * Regenerated from discovery document revision 20231019
10
+
3
11
  ### v0.70.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::DialogflowV2::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::DialogflowV2::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)
@@ -9091,6 +9225,37 @@ module Google
9091
9225
  end
9092
9226
  end
9093
9227
 
9228
+ # A customer-managed encryption key specification that can be applied to all
9229
+ # created resources (e.g. Conversation).
9230
+ class GoogleCloudDialogflowV2EncryptionSpec
9231
+ include Google::Apis::Core::Hashable
9232
+
9233
+ # Required. The name of customer-managed encryption key that is used to secure a
9234
+ # resource and its sub-resources. If empty, the resource is secured by the
9235
+ # default Google encryption key. Only the key in the same location as this
9236
+ # resource is allowed to be used for encryption. Format: `projects/`project`/
9237
+ # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
9238
+ # Corresponds to the JSON property `kmsKey`
9239
+ # @return [String]
9240
+ attr_accessor :kms_key
9241
+
9242
+ # Immutable. The resource name of the encryption key specification resource.
9243
+ # Format: projects/`project`/locations/`location`/encryptionSpec
9244
+ # Corresponds to the JSON property `name`
9245
+ # @return [String]
9246
+ attr_accessor :name
9247
+
9248
+ def initialize(**args)
9249
+ update!(**args)
9250
+ end
9251
+
9252
+ # Update properties of this object
9253
+ def update!(**args)
9254
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
9255
+ @name = args[:name] if args.key?(:name)
9256
+ end
9257
+ end
9258
+
9094
9259
  # Each intent parameter has a type, called the entity type, which dictates
9095
9260
  # exactly how data from an end-user expression is extracted. Dialogflow provides
9096
9261
  # predefined system entities that can match many common types of data. For
@@ -10700,6 +10865,45 @@ module Google
10700
10865
  end
10701
10866
  end
10702
10867
 
10868
+ # Metadata for initializing a location-level encryption specification.
10869
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
10870
+ include Google::Apis::Core::Hashable
10871
+
10872
+ # The request to initialize a location-level encryption specification.
10873
+ # Corresponds to the JSON property `request`
10874
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest]
10875
+ attr_accessor :request
10876
+
10877
+ def initialize(**args)
10878
+ update!(**args)
10879
+ end
10880
+
10881
+ # Update properties of this object
10882
+ def update!(**args)
10883
+ @request = args[:request] if args.key?(:request)
10884
+ end
10885
+ end
10886
+
10887
+ # The request to initialize a location-level encryption specification.
10888
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
10889
+ include Google::Apis::Core::Hashable
10890
+
10891
+ # A customer-managed encryption key specification that can be applied to all
10892
+ # created resources (e.g. Conversation).
10893
+ # Corresponds to the JSON property `encryptionSpec`
10894
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EncryptionSpec]
10895
+ attr_accessor :encryption_spec
10896
+
10897
+ def initialize(**args)
10898
+ update!(**args)
10899
+ end
10900
+
10901
+ # Update properties of this object
10902
+ def update!(**args)
10903
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
10904
+ end
10905
+ end
10906
+
10703
10907
  # Instructs the speech recognizer how to process the audio content.
10704
10908
  class GoogleCloudDialogflowV2InputAudioConfig
10705
10909
  include Google::Apis::Core::Hashable
@@ -15048,6 +15252,37 @@ module Google
15048
15252
  end
15049
15253
  end
15050
15254
 
15255
+ # A customer-managed encryption key specification that can be applied to all
15256
+ # created resources (e.g. Conversation).
15257
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
15258
+ include Google::Apis::Core::Hashable
15259
+
15260
+ # Required. The name of customer-managed encryption key that is used to secure a
15261
+ # resource and its sub-resources. If empty, the resource is secured by the
15262
+ # default Google encryption key. Only the key in the same location as this
15263
+ # resource is allowed to be used for encryption. Format: `projects/`project`/
15264
+ # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
15265
+ # Corresponds to the JSON property `kmsKey`
15266
+ # @return [String]
15267
+ attr_accessor :kms_key
15268
+
15269
+ # Immutable. The resource name of the encryption key specification resource.
15270
+ # Format: projects/`project`/locations/`location`/encryptionSpec
15271
+ # Corresponds to the JSON property `name`
15272
+ # @return [String]
15273
+ attr_accessor :name
15274
+
15275
+ def initialize(**args)
15276
+ update!(**args)
15277
+ end
15278
+
15279
+ # Update properties of this object
15280
+ def update!(**args)
15281
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
15282
+ @name = args[:name] if args.key?(:name)
15283
+ end
15284
+ end
15285
+
15051
15286
  # Each intent parameter has a type, called the entity type, which dictates
15052
15287
  # exactly how data from an end-user expression is extracted. Dialogflow provides
15053
15288
  # predefined system entities that can match many common types of data. For
@@ -15366,6 +15601,45 @@ module Google
15366
15601
  end
15367
15602
  end
15368
15603
 
15604
+ # Metadata for initializing a location-level encryption specification.
15605
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
15606
+ include Google::Apis::Core::Hashable
15607
+
15608
+ # The request to initialize a location-level encryption specification.
15609
+ # Corresponds to the JSON property `request`
15610
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest]
15611
+ attr_accessor :request
15612
+
15613
+ def initialize(**args)
15614
+ update!(**args)
15615
+ end
15616
+
15617
+ # Update properties of this object
15618
+ def update!(**args)
15619
+ @request = args[:request] if args.key?(:request)
15620
+ end
15621
+ end
15622
+
15623
+ # The request to initialize a location-level encryption specification.
15624
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
15625
+ include Google::Apis::Core::Hashable
15626
+
15627
+ # A customer-managed encryption key specification that can be applied to all
15628
+ # created resources (e.g. Conversation).
15629
+ # Corresponds to the JSON property `encryptionSpec`
15630
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1EncryptionSpec]
15631
+ attr_accessor :encryption_spec
15632
+
15633
+ def initialize(**args)
15634
+ update!(**args)
15635
+ end
15636
+
15637
+ # Update properties of this object
15638
+ def update!(**args)
15639
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
15640
+ end
15641
+ end
15642
+
15369
15643
  # An intent categorizes an end-user's intention for one conversation turn. For
15370
15644
  # each agent, you define many intents, where your combined intents can handle a
15371
15645
  # complete conversation. When an end-user writes or says something, referred to
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2
18
18
  # Version of the google-apis-dialogflow_v2 gem
19
- GEM_VERSION = "0.70.0"
19
+ GEM_VERSION = "0.72.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
 
@@ -1498,6 +1510,12 @@ module Google
1498
1510
  include Google::Apis::Core::JsonObjectSupport
1499
1511
  end
1500
1512
 
1513
+ class GoogleCloudDialogflowV2EncryptionSpec
1514
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1515
+
1516
+ include Google::Apis::Core::JsonObjectSupport
1517
+ end
1518
+
1501
1519
  class GoogleCloudDialogflowV2EntityType
1502
1520
  class Representation < Google::Apis::Core::JsonRepresentation; end
1503
1521
 
@@ -1786,6 +1804,18 @@ module Google
1786
1804
  include Google::Apis::Core::JsonObjectSupport
1787
1805
  end
1788
1806
 
1807
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
1808
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1809
+
1810
+ include Google::Apis::Core::JsonObjectSupport
1811
+ end
1812
+
1813
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
1814
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1815
+
1816
+ include Google::Apis::Core::JsonObjectSupport
1817
+ end
1818
+
1789
1819
  class GoogleCloudDialogflowV2InputAudioConfig
1790
1820
  class Representation < Google::Apis::Core::JsonRepresentation; end
1791
1821
 
@@ -2494,6 +2524,12 @@ module Google
2494
2524
  include Google::Apis::Core::JsonObjectSupport
2495
2525
  end
2496
2526
 
2527
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
2528
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2529
+
2530
+ include Google::Apis::Core::JsonObjectSupport
2531
+ end
2532
+
2497
2533
  class GoogleCloudDialogflowV2beta1EntityType
2498
2534
  class Representation < Google::Apis::Core::JsonRepresentation; end
2499
2535
 
@@ -2548,6 +2584,18 @@ module Google
2548
2584
  include Google::Apis::Core::JsonObjectSupport
2549
2585
  end
2550
2586
 
2587
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
2588
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2589
+
2590
+ include Google::Apis::Core::JsonObjectSupport
2591
+ end
2592
+
2593
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
2594
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2595
+
2596
+ include Google::Apis::Core::JsonObjectSupport
2597
+ end
2598
+
2551
2599
  class GoogleCloudDialogflowV2beta1Intent
2552
2600
  class Representation < Google::Apis::Core::JsonRepresentation; end
2553
2601
 
@@ -3084,6 +3132,14 @@ module Google
3084
3132
  end
3085
3133
  end
3086
3134
 
3135
+ class GoogleCloudDialogflowCxV3BargeInConfig
3136
+ # @private
3137
+ class Representation < Google::Apis::Core::JsonRepresentation
3138
+ property :no_barge_in_duration, as: 'noBargeInDuration'
3139
+ property :total_duration, as: 'totalDuration'
3140
+ end
3141
+ end
3142
+
3087
3143
  class GoogleCloudDialogflowCxV3BatchRunTestCasesMetadata
3088
3144
  # @private
3089
3145
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3491,6 +3547,8 @@ module Google
3491
3547
  # @private
3492
3548
  class Representation < Google::Apis::Core::JsonRepresentation
3493
3549
  property :audio_encoding, as: 'audioEncoding'
3550
+ property :barge_in_config, as: 'bargeInConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3BargeInConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3BargeInConfig::Representation
3551
+
3494
3552
  property :enable_word_info, as: 'enableWordInfo'
3495
3553
  property :model, as: 'model'
3496
3554
  property :model_variant, as: 'modelVariant'
@@ -4050,6 +4108,14 @@ module Google
4050
4108
  end
4051
4109
  end
4052
4110
 
4111
+ class GoogleCloudDialogflowCxV3beta1BargeInConfig
4112
+ # @private
4113
+ class Representation < Google::Apis::Core::JsonRepresentation
4114
+ property :no_barge_in_duration, as: 'noBargeInDuration'
4115
+ property :total_duration, as: 'totalDuration'
4116
+ end
4117
+ end
4118
+
4053
4119
  class GoogleCloudDialogflowCxV3beta1BatchRunTestCasesMetadata
4054
4120
  # @private
4055
4121
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4457,6 +4523,8 @@ module Google
4457
4523
  # @private
4458
4524
  class Representation < Google::Apis::Core::JsonRepresentation
4459
4525
  property :audio_encoding, as: 'audioEncoding'
4526
+ property :barge_in_config, as: 'bargeInConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1BargeInConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1BargeInConfig::Representation
4527
+
4460
4528
  property :enable_word_info, as: 'enableWordInfo'
4461
4529
  property :model, as: 'model'
4462
4530
  property :model_variant, as: 'modelVariant'
@@ -5517,6 +5585,14 @@ module Google
5517
5585
  end
5518
5586
  end
5519
5587
 
5588
+ class GoogleCloudDialogflowV2EncryptionSpec
5589
+ # @private
5590
+ class Representation < Google::Apis::Core::JsonRepresentation
5591
+ property :kms_key, as: 'kmsKey'
5592
+ property :name, as: 'name'
5593
+ end
5594
+ end
5595
+
5520
5596
  class GoogleCloudDialogflowV2EntityType
5521
5597
  # @private
5522
5598
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5972,6 +6048,22 @@ module Google
5972
6048
  end
5973
6049
  end
5974
6050
 
6051
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
6052
+ # @private
6053
+ class Representation < Google::Apis::Core::JsonRepresentation
6054
+ property :request, as: 'request', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest::Representation
6055
+
6056
+ end
6057
+ end
6058
+
6059
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
6060
+ # @private
6061
+ class Representation < Google::Apis::Core::JsonRepresentation
6062
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EncryptionSpec, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EncryptionSpec::Representation
6063
+
6064
+ end
6065
+ end
6066
+
5975
6067
  class GoogleCloudDialogflowV2InputAudioConfig
5976
6068
  # @private
5977
6069
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7165,6 +7257,14 @@ module Google
7165
7257
  end
7166
7258
  end
7167
7259
 
7260
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
7261
+ # @private
7262
+ class Representation < Google::Apis::Core::JsonRepresentation
7263
+ property :kms_key, as: 'kmsKey'
7264
+ property :name, as: 'name'
7265
+ end
7266
+ end
7267
+
7168
7268
  class GoogleCloudDialogflowV2beta1EntityType
7169
7269
  # @private
7170
7270
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7248,6 +7348,22 @@ module Google
7248
7348
  end
7249
7349
  end
7250
7350
 
7351
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
7352
+ # @private
7353
+ class Representation < Google::Apis::Core::JsonRepresentation
7354
+ property :request, as: 'request', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest::Representation
7355
+
7356
+ end
7357
+ end
7358
+
7359
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
7360
+ # @private
7361
+ class Representation < Google::Apis::Core::JsonRepresentation
7362
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1EncryptionSpec, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1EncryptionSpec::Representation
7363
+
7364
+ end
7365
+ end
7366
+
7251
7367
  class GoogleCloudDialogflowV2beta1Intent
7252
7368
  # @private
7253
7369
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.70.0
4
+ version: 0.72.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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.70.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.72.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
63
63
  post_install_message:
64
64
  rdoc_options: []