google-apis-dialogflow_v2beta1 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: a3730527184ec4b1aa558fbba6e05cb7635dfabea07306320079148a0fc23f5e
4
- data.tar.gz: 349b8f5a7e28b98fd77454c75f4cf4b5c90561ef56a37ba8873fe369dbddb3f9
3
+ metadata.gz: 695448f09fda86c2b82654d387ab92c9e939571e03feff28651b2bc3d39535a5
4
+ data.tar.gz: 9471fc67f96f36ae0338e8247d497268eae59db52e4d7a2bce7b837cc0d9b0c3
5
5
  SHA512:
6
- metadata.gz: 71be1898970e84c5292500e59fa4023d4fd7ace42fb305efca588e9672ad5a169dc8f1022ac51dd41544271a36d326277119795847fcf3177e41ea5e27a485c0
7
- data.tar.gz: 340cc26665c7b9cfe4ffbf4b8b32cf16ace7b392c78c71e79c1bbf1a56a29ead2c5b3670655c58762133d9857c4c75af490e458eec020aa6d50fbd8bc23e2e60
6
+ metadata.gz: c07e2f0f36ffc2973240be4d192f8708d6e47abf08dab11583ec8d5c91bb59a31bb81b16fc45293033bedfff3ec32f9c679b7c3b1a626731af0f7d659ee5000f
7
+ data.tar.gz: c05e7746efeb881fd9c9840cea1a5cd69ea082cf645bf6456675ef86fd80e1f9e674f82f5e6d741d68c13d6fee72ae3f591ef0464f014c7122e972644f7c8c80
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.72.0 (2023-12-03)
4
+
5
+ * Regenerated from discovery document revision 20231129
6
+
7
+ ### v0.71.0 (2023-11-19)
8
+
9
+ * Regenerated from discovery document revision 20231109
10
+
3
11
  ### v0.70.0 (2023-10-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20231019
@@ -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,37 +7704,6 @@ module Google
7570
7704
  end
7571
7705
  end
7572
7706
 
7573
- # A customer-managed encryption key specification that can be applied to all
7574
- # created resources (e.g. Conversation).
7575
- class GoogleCloudDialogflowV2EncryptionSpec
7576
- include Google::Apis::Core::Hashable
7577
-
7578
- # Required. The name of customer-managed encryption key that is used to secure a
7579
- # resource and its sub-resources. If empty, the resource is secured by the
7580
- # default Google encryption key. Only the key in the same location as this
7581
- # resource is allowed to be used for encryption. Format: `projects/`project`/
7582
- # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
7583
- # Corresponds to the JSON property `kmsKey`
7584
- # @return [String]
7585
- attr_accessor :kms_key
7586
-
7587
- # Immutable. The resource name of the encryption key specification resource.
7588
- # Format: projects/`project`/locations/`location`/encryptionSpec
7589
- # Corresponds to the JSON property `name`
7590
- # @return [String]
7591
- attr_accessor :name
7592
-
7593
- def initialize(**args)
7594
- update!(**args)
7595
- end
7596
-
7597
- # Update properties of this object
7598
- def update!(**args)
7599
- @kms_key = args[:kms_key] if args.key?(:kms_key)
7600
- @name = args[:name] if args.key?(:name)
7601
- end
7602
- end
7603
-
7604
7707
  # Each intent parameter has a type, called the entity type, which dictates
7605
7708
  # exactly how data from an end-user expression is extracted. Dialogflow provides
7606
7709
  # predefined system entities that can match many common types of data. For
@@ -7975,45 +8078,6 @@ module Google
7975
8078
  end
7976
8079
  end
7977
8080
 
7978
- # Metadata for initializing a location-level encryption specification.
7979
- class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
7980
- include Google::Apis::Core::Hashable
7981
-
7982
- # The request to initialize a location-level encryption specification.
7983
- # Corresponds to the JSON property `request`
7984
- # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest]
7985
- attr_accessor :request
7986
-
7987
- def initialize(**args)
7988
- update!(**args)
7989
- end
7990
-
7991
- # Update properties of this object
7992
- def update!(**args)
7993
- @request = args[:request] if args.key?(:request)
7994
- end
7995
- end
7996
-
7997
- # The request to initialize a location-level encryption specification.
7998
- class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
7999
- include Google::Apis::Core::Hashable
8000
-
8001
- # A customer-managed encryption key specification that can be applied to all
8002
- # created resources (e.g. Conversation).
8003
- # Corresponds to the JSON property `encryptionSpec`
8004
- # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec]
8005
- attr_accessor :encryption_spec
8006
-
8007
- def initialize(**args)
8008
- update!(**args)
8009
- end
8010
-
8011
- # Update properties of this object
8012
- def update!(**args)
8013
- @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
8014
- end
8015
- end
8016
-
8017
8081
  # InputDataset used to create model or do evaluation. NextID:5
8018
8082
  class GoogleCloudDialogflowV2InputDataset
8019
8083
  include Google::Apis::Core::Hashable
@@ -12028,37 +12092,6 @@ module Google
12028
12092
  end
12029
12093
  end
12030
12094
 
12031
- # A customer-managed encryption key specification that can be applied to all
12032
- # created resources (e.g. Conversation).
12033
- class GoogleCloudDialogflowV2beta1EncryptionSpec
12034
- include Google::Apis::Core::Hashable
12035
-
12036
- # Required. The name of customer-managed encryption key that is used to secure a
12037
- # resource and its sub-resources. If empty, the resource is secured by the
12038
- # default Google encryption key. Only the key in the same location as this
12039
- # resource is allowed to be used for encryption. Format: `projects/`project`/
12040
- # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
12041
- # Corresponds to the JSON property `kmsKey`
12042
- # @return [String]
12043
- attr_accessor :kms_key
12044
-
12045
- # Immutable. The resource name of the encryption key specification resource.
12046
- # Format: projects/`project`/locations/`location`/encryptionSpec
12047
- # Corresponds to the JSON property `name`
12048
- # @return [String]
12049
- attr_accessor :name
12050
-
12051
- def initialize(**args)
12052
- update!(**args)
12053
- end
12054
-
12055
- # Update properties of this object
12056
- def update!(**args)
12057
- @kms_key = args[:kms_key] if args.key?(:kms_key)
12058
- @name = args[:name] if args.key?(:name)
12059
- end
12060
- end
12061
-
12062
12095
  # Each intent parameter has a type, called the entity type, which dictates
12063
12096
  # exactly how data from an end-user expression is extracted. Dialogflow provides
12064
12097
  # predefined system entities that can match many common types of data. For
@@ -13083,6 +13116,13 @@ module Google
13083
13116
  # @return [Fixnum]
13084
13117
  attr_accessor :max_results
13085
13118
 
13119
+ # Custom sections to return when requesting a summary of a conversation. This is
13120
+ # only supported when `baseline_model_version` == '2.0'. Supported features:
13121
+ # CONVERSATION_SUMMARIZATION, CONVERSATION_SUMMARIZATION_VOICE.
13122
+ # Corresponds to the JSON property `sections`
13123
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections]
13124
+ attr_accessor :sections
13125
+
13086
13126
  def initialize(**args)
13087
13127
  update!(**args)
13088
13128
  end
@@ -13095,6 +13135,7 @@ module Google
13095
13135
  @document_query_source = args[:document_query_source] if args.key?(:document_query_source)
13096
13136
  @knowledge_base_query_source = args[:knowledge_base_query_source] if args.key?(:knowledge_base_query_source)
13097
13137
  @max_results = args[:max_results] if args.key?(:max_results)
13138
+ @sections = args[:sections] if args.key?(:sections)
13098
13139
  end
13099
13140
  end
13100
13141
 
@@ -13222,6 +13263,30 @@ module Google
13222
13263
  end
13223
13264
  end
13224
13265
 
13266
+ # Custom sections to return when requesting a summary of a conversation. This is
13267
+ # only supported when `baseline_model_version` == '2.0'. Supported features:
13268
+ # CONVERSATION_SUMMARIZATION, CONVERSATION_SUMMARIZATION_VOICE.
13269
+ class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections
13270
+ include Google::Apis::Core::Hashable
13271
+
13272
+ # The selected sections chosen to return when requesting a summary of a
13273
+ # conversation. A duplicate selected section will be treated as a single
13274
+ # selected section. If section types are not provided, the default will be `
13275
+ # SITUATION, ACTION, RESULT`.
13276
+ # Corresponds to the JSON property `sectionTypes`
13277
+ # @return [Array<String>]
13278
+ attr_accessor :section_types
13279
+
13280
+ def initialize(**args)
13281
+ update!(**args)
13282
+ end
13283
+
13284
+ # Update properties of this object
13285
+ def update!(**args)
13286
+ @section_types = args[:section_types] if args.key?(:section_types)
13287
+ end
13288
+ end
13289
+
13225
13290
  # Settings of suggestion trigger.
13226
13291
  class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings
13227
13292
  include Google::Apis::Core::Hashable
@@ -13491,45 +13556,6 @@ module Google
13491
13556
  end
13492
13557
  end
13493
13558
 
13494
- # Metadata for initializing a location-level encryption specification.
13495
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
13496
- include Google::Apis::Core::Hashable
13497
-
13498
- # The request to initialize a location-level encryption specification.
13499
- # Corresponds to the JSON property `request`
13500
- # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest]
13501
- attr_accessor :request
13502
-
13503
- def initialize(**args)
13504
- update!(**args)
13505
- end
13506
-
13507
- # Update properties of this object
13508
- def update!(**args)
13509
- @request = args[:request] if args.key?(:request)
13510
- end
13511
- end
13512
-
13513
- # The request to initialize a location-level encryption specification.
13514
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
13515
- include Google::Apis::Core::Hashable
13516
-
13517
- # A customer-managed encryption key specification that can be applied to all
13518
- # created resources (e.g. Conversation).
13519
- # Corresponds to the JSON property `encryptionSpec`
13520
- # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec]
13521
- attr_accessor :encryption_spec
13522
-
13523
- def initialize(**args)
13524
- update!(**args)
13525
- end
13526
-
13527
- # Update properties of this object
13528
- def update!(**args)
13529
- @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
13530
- end
13531
- end
13532
-
13533
13559
  # Instructs the speech recognizer on how to process the audio content.
13534
13560
  class GoogleCloudDialogflowV2beta1InputAudioConfig
13535
13561
  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.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 = "20231019"
25
+ REVISION = "20231129"
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,12 +1300,6 @@ module Google
1288
1300
  include Google::Apis::Core::JsonObjectSupport
1289
1301
  end
1290
1302
 
1291
- class GoogleCloudDialogflowV2EncryptionSpec
1292
- class Representation < Google::Apis::Core::JsonRepresentation; end
1293
-
1294
- include Google::Apis::Core::JsonObjectSupport
1295
- end
1296
-
1297
1303
  class GoogleCloudDialogflowV2EntityType
1298
1304
  class Representation < Google::Apis::Core::JsonRepresentation; end
1299
1305
 
@@ -1360,18 +1366,6 @@ module Google
1360
1366
  include Google::Apis::Core::JsonObjectSupport
1361
1367
  end
1362
1368
 
1363
- class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
1364
- class Representation < Google::Apis::Core::JsonRepresentation; end
1365
-
1366
- include Google::Apis::Core::JsonObjectSupport
1367
- end
1368
-
1369
- class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
1370
- class Representation < Google::Apis::Core::JsonRepresentation; end
1371
-
1372
- include Google::Apis::Core::JsonObjectSupport
1373
- end
1374
-
1375
1369
  class GoogleCloudDialogflowV2InputDataset
1376
1370
  class Representation < Google::Apis::Core::JsonRepresentation; end
1377
1371
 
@@ -1948,12 +1942,6 @@ module Google
1948
1942
  include Google::Apis::Core::JsonObjectSupport
1949
1943
  end
1950
1944
 
1951
- class GoogleCloudDialogflowV2beta1EncryptionSpec
1952
- class Representation < Google::Apis::Core::JsonRepresentation; end
1953
-
1954
- include Google::Apis::Core::JsonObjectSupport
1955
- end
1956
-
1957
1945
  class GoogleCloudDialogflowV2beta1EntityType
1958
1946
  class Representation < Google::Apis::Core::JsonRepresentation; end
1959
1947
 
@@ -2152,6 +2140,12 @@ module Google
2152
2140
  include Google::Apis::Core::JsonObjectSupport
2153
2141
  end
2154
2142
 
2143
+ class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections
2144
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2145
+
2146
+ include Google::Apis::Core::JsonObjectSupport
2147
+ end
2148
+
2155
2149
  class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings
2156
2150
  class Representation < Google::Apis::Core::JsonRepresentation; end
2157
2151
 
@@ -2206,18 +2200,6 @@ module Google
2206
2200
  include Google::Apis::Core::JsonObjectSupport
2207
2201
  end
2208
2202
 
2209
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
2210
- class Representation < Google::Apis::Core::JsonRepresentation; end
2211
-
2212
- include Google::Apis::Core::JsonObjectSupport
2213
- end
2214
-
2215
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
2216
- class Representation < Google::Apis::Core::JsonRepresentation; end
2217
-
2218
- include Google::Apis::Core::JsonObjectSupport
2219
- end
2220
-
2221
2203
  class GoogleCloudDialogflowV2beta1InputAudioConfig
2222
2204
  class Representation < Google::Apis::Core::JsonRepresentation; end
2223
2205
 
@@ -3138,6 +3120,14 @@ module Google
3138
3120
  end
3139
3121
  end
3140
3122
 
3123
+ class GoogleCloudDialogflowCxV3BargeInConfig
3124
+ # @private
3125
+ class Representation < Google::Apis::Core::JsonRepresentation
3126
+ property :no_barge_in_duration, as: 'noBargeInDuration'
3127
+ property :total_duration, as: 'totalDuration'
3128
+ end
3129
+ end
3130
+
3141
3131
  class GoogleCloudDialogflowCxV3BatchRunTestCasesMetadata
3142
3132
  # @private
3143
3133
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3545,6 +3535,8 @@ module Google
3545
3535
  # @private
3546
3536
  class Representation < Google::Apis::Core::JsonRepresentation
3547
3537
  property :audio_encoding, as: 'audioEncoding'
3538
+ property :barge_in_config, as: 'bargeInConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3BargeInConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3BargeInConfig::Representation
3539
+
3548
3540
  property :enable_word_info, as: 'enableWordInfo'
3549
3541
  property :model, as: 'model'
3550
3542
  property :model_variant, as: 'modelVariant'
@@ -4104,6 +4096,14 @@ module Google
4104
4096
  end
4105
4097
  end
4106
4098
 
4099
+ class GoogleCloudDialogflowCxV3beta1BargeInConfig
4100
+ # @private
4101
+ class Representation < Google::Apis::Core::JsonRepresentation
4102
+ property :no_barge_in_duration, as: 'noBargeInDuration'
4103
+ property :total_duration, as: 'totalDuration'
4104
+ end
4105
+ end
4106
+
4107
4107
  class GoogleCloudDialogflowCxV3beta1BatchRunTestCasesMetadata
4108
4108
  # @private
4109
4109
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4511,6 +4511,8 @@ module Google
4511
4511
  # @private
4512
4512
  class Representation < Google::Apis::Core::JsonRepresentation
4513
4513
  property :audio_encoding, as: 'audioEncoding'
4514
+ property :barge_in_config, as: 'bargeInConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1BargeInConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1BargeInConfig::Representation
4515
+
4514
4516
  property :enable_word_info, as: 'enableWordInfo'
4515
4517
  property :model, as: 'model'
4516
4518
  property :model_variant, as: 'modelVariant'
@@ -5171,14 +5173,6 @@ module Google
5171
5173
  end
5172
5174
  end
5173
5175
 
5174
- class GoogleCloudDialogflowV2EncryptionSpec
5175
- # @private
5176
- class Representation < Google::Apis::Core::JsonRepresentation
5177
- property :kms_key, as: 'kmsKey'
5178
- property :name, as: 'name'
5179
- end
5180
- end
5181
-
5182
5176
  class GoogleCloudDialogflowV2EntityType
5183
5177
  # @private
5184
5178
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5280,22 +5274,6 @@ module Google
5280
5274
  end
5281
5275
  end
5282
5276
 
5283
- class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
5284
- # @private
5285
- class Representation < Google::Apis::Core::JsonRepresentation
5286
- property :request, as: 'request', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest::Representation
5287
-
5288
- end
5289
- end
5290
-
5291
- class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
5292
- # @private
5293
- class Representation < Google::Apis::Core::JsonRepresentation
5294
- property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec::Representation
5295
-
5296
- end
5297
- end
5298
-
5299
5277
  class GoogleCloudDialogflowV2InputDataset
5300
5278
  # @private
5301
5279
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6359,14 +6337,6 @@ module Google
6359
6337
  end
6360
6338
  end
6361
6339
 
6362
- class GoogleCloudDialogflowV2beta1EncryptionSpec
6363
- # @private
6364
- class Representation < Google::Apis::Core::JsonRepresentation
6365
- property :kms_key, as: 'kmsKey'
6366
- property :name, as: 'name'
6367
- end
6368
- end
6369
-
6370
6340
  class GoogleCloudDialogflowV2beta1EntityType
6371
6341
  # @private
6372
6342
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6642,6 +6612,8 @@ module Google
6642
6612
  property :knowledge_base_query_source, as: 'knowledgeBaseQuerySource', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigKnowledgeBaseQuerySource, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigKnowledgeBaseQuerySource::Representation
6643
6613
 
6644
6614
  property :max_results, as: 'maxResults'
6615
+ property :sections, as: 'sections', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections::Representation
6616
+
6645
6617
  end
6646
6618
  end
6647
6619
 
@@ -6684,6 +6656,13 @@ module Google
6684
6656
  end
6685
6657
  end
6686
6658
 
6659
+ class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections
6660
+ # @private
6661
+ class Representation < Google::Apis::Core::JsonRepresentation
6662
+ collection :section_types, as: 'sectionTypes'
6663
+ end
6664
+ end
6665
+
6687
6666
  class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings
6688
6667
  # @private
6689
6668
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6765,22 +6744,6 @@ module Google
6765
6744
  end
6766
6745
  end
6767
6746
 
6768
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
6769
- # @private
6770
- class Representation < Google::Apis::Core::JsonRepresentation
6771
- property :request, as: 'request', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest::Representation
6772
-
6773
- end
6774
- end
6775
-
6776
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
6777
- # @private
6778
- class Representation < Google::Apis::Core::JsonRepresentation
6779
- property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec::Representation
6780
-
6781
- end
6782
- end
6783
-
6784
6747
  class GoogleCloudDialogflowV2beta1InputAudioConfig
6785
6748
  # @private
6786
6749
  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.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-10-29 00:00:00.000000000 Z
11
+ date: 2023-12-03 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.70.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.72.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: []