google-apis-contactcenterinsights_v1 0.79.0 → 0.80.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +108 -3
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +2 -2
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +47 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +90 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c30722414b0688b173373a6a5b88a3cc917cd07b9fc1be164c2ce9ad3d3ad35
|
|
4
|
+
data.tar.gz: fbf40587d529cc214a86dbd6e2a7791a98315ab6650e36831cf31fc458f07a29
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 170cae21948f6391b74a17ab0632c1357cd58d55b862707e7a2f02928ae5fabe5cff1ddf38ed5efa850948e915531c265cea86a1e37fb5ed928fe916ef8f5a2c
|
|
7
|
+
data.tar.gz: 73aea9764f412c836426f602619e892bb685e24d2c0234cf797d6b266a2891d0a66a10914ab43fff111e68ec6c13f531fa02600804f300576d08a5f8fa2e6cc2
|
data/CHANGELOG.md
CHANGED
|
@@ -1790,6 +1790,31 @@ module Google
|
|
|
1790
1790
|
end
|
|
1791
1791
|
end
|
|
1792
1792
|
|
|
1793
|
+
# A wrapper for holding the audio for any given turn.
|
|
1794
|
+
class GoogleCloudContactcenterinsightsV1ConversationDataSourceTurnLevelAudio
|
|
1795
|
+
include Google::Apis::Core::Hashable
|
|
1796
|
+
|
|
1797
|
+
# The duration of the audio.
|
|
1798
|
+
# Corresponds to the JSON property `audioDuration`
|
|
1799
|
+
# @return [String]
|
|
1800
|
+
attr_accessor :audio_duration
|
|
1801
|
+
|
|
1802
|
+
# The Cloud Storage URI of the audio for any given turn.
|
|
1803
|
+
# Corresponds to the JSON property `audioGcsUri`
|
|
1804
|
+
# @return [String]
|
|
1805
|
+
attr_accessor :audio_gcs_uri
|
|
1806
|
+
|
|
1807
|
+
def initialize(**args)
|
|
1808
|
+
update!(**args)
|
|
1809
|
+
end
|
|
1810
|
+
|
|
1811
|
+
# Update properties of this object
|
|
1812
|
+
def update!(**args)
|
|
1813
|
+
@audio_duration = args[:audio_duration] if args.key?(:audio_duration)
|
|
1814
|
+
@audio_gcs_uri = args[:audio_gcs_uri] if args.key?(:audio_gcs_uri)
|
|
1815
|
+
end
|
|
1816
|
+
end
|
|
1817
|
+
|
|
1793
1818
|
# One channel of conversation-level sentiment data.
|
|
1794
1819
|
class GoogleCloudContactcenterinsightsV1ConversationLevelSentiment
|
|
1795
1820
|
include Google::Apis::Core::Hashable
|
|
@@ -3606,6 +3631,25 @@ module Google
|
|
|
3606
3631
|
end
|
|
3607
3632
|
end
|
|
3608
3633
|
|
|
3634
|
+
# The response from a GenerateConversationSignedAudio request.
|
|
3635
|
+
class GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse
|
|
3636
|
+
include Google::Apis::Core::Hashable
|
|
3637
|
+
|
|
3638
|
+
# Signed audio URIs for a conversation.
|
|
3639
|
+
# Corresponds to the JSON property `signedAudioUris`
|
|
3640
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SignedAudioUris]
|
|
3641
|
+
attr_accessor :signed_audio_uris
|
|
3642
|
+
|
|
3643
|
+
def initialize(**args)
|
|
3644
|
+
update!(**args)
|
|
3645
|
+
end
|
|
3646
|
+
|
|
3647
|
+
# Update properties of this object
|
|
3648
|
+
def update!(**args)
|
|
3649
|
+
@signed_audio_uris = args[:signed_audio_uris] if args.key?(:signed_audio_uris)
|
|
3650
|
+
end
|
|
3651
|
+
end
|
|
3652
|
+
|
|
3609
3653
|
# The data for a hold annotation.
|
|
3610
3654
|
class GoogleCloudContactcenterinsightsV1HoldData
|
|
3611
3655
|
include Google::Apis::Core::Hashable
|
|
@@ -5259,7 +5303,9 @@ module Google
|
|
|
5259
5303
|
class GoogleCloudContactcenterinsightsV1QaAnswer
|
|
5260
5304
|
include Google::Apis::Core::Hashable
|
|
5261
5305
|
|
|
5262
|
-
#
|
|
5306
|
+
# Lists all answer sources containing one or more answer values of a specific
|
|
5307
|
+
# source type, e.g., all system-generated answer sources, or all manual edit
|
|
5308
|
+
# answer sources.
|
|
5263
5309
|
# Corresponds to the JSON property `answerSources`
|
|
5264
5310
|
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaAnswerAnswerSource>]
|
|
5265
5311
|
attr_accessor :answer_sources
|
|
@@ -6949,6 +6995,37 @@ module Google
|
|
|
6949
6995
|
end
|
|
6950
6996
|
end
|
|
6951
6997
|
|
|
6998
|
+
# Signed audio URIs for a conversation.
|
|
6999
|
+
class GoogleCloudContactcenterinsightsV1SignedAudioUris
|
|
7000
|
+
include Google::Apis::Core::Hashable
|
|
7001
|
+
|
|
7002
|
+
# The signed URI for the audio from the Dialogflow conversation source.
|
|
7003
|
+
# Corresponds to the JSON property `signedDialogflowAudioUri`
|
|
7004
|
+
# @return [String]
|
|
7005
|
+
attr_accessor :signed_dialogflow_audio_uri
|
|
7006
|
+
|
|
7007
|
+
# The signed URI for the audio from the Cloud Storage conversation source.
|
|
7008
|
+
# Corresponds to the JSON property `signedGcsAudioUri`
|
|
7009
|
+
# @return [String]
|
|
7010
|
+
attr_accessor :signed_gcs_audio_uri
|
|
7011
|
+
|
|
7012
|
+
# The signed URI for the audio corresponding to each turn in the conversation.
|
|
7013
|
+
# Corresponds to the JSON property `signedTurnLevelAudios`
|
|
7014
|
+
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationDataSourceTurnLevelAudio>]
|
|
7015
|
+
attr_accessor :signed_turn_level_audios
|
|
7016
|
+
|
|
7017
|
+
def initialize(**args)
|
|
7018
|
+
update!(**args)
|
|
7019
|
+
end
|
|
7020
|
+
|
|
7021
|
+
# Update properties of this object
|
|
7022
|
+
def update!(**args)
|
|
7023
|
+
@signed_dialogflow_audio_uri = args[:signed_dialogflow_audio_uri] if args.key?(:signed_dialogflow_audio_uri)
|
|
7024
|
+
@signed_gcs_audio_uri = args[:signed_gcs_audio_uri] if args.key?(:signed_gcs_audio_uri)
|
|
7025
|
+
@signed_turn_level_audios = args[:signed_turn_level_audios] if args.key?(:signed_turn_level_audios)
|
|
7026
|
+
end
|
|
7027
|
+
end
|
|
7028
|
+
|
|
6952
7029
|
# The data for a silence annotation.
|
|
6953
7030
|
class GoogleCloudContactcenterinsightsV1SilenceData
|
|
6954
7031
|
include Google::Apis::Core::Hashable
|
|
@@ -7051,6 +7128,13 @@ module Google
|
|
|
7051
7128
|
class GoogleCloudContactcenterinsightsV1SpeechConfig
|
|
7052
7129
|
include Google::Apis::Core::Hashable
|
|
7053
7130
|
|
|
7131
|
+
# Whether to disable word time offsets. If true, the `enable_word_time_offsets`
|
|
7132
|
+
# field in the recognition config will be set to false.
|
|
7133
|
+
# Corresponds to the JSON property `disableWordTimeOffsets`
|
|
7134
|
+
# @return [Boolean]
|
|
7135
|
+
attr_accessor :disable_word_time_offsets
|
|
7136
|
+
alias_method :disable_word_time_offsets?, :disable_word_time_offsets
|
|
7137
|
+
|
|
7054
7138
|
# The fully-qualified Speech Recognizer resource name. Format: `projects/`
|
|
7055
7139
|
# project_id`/locations/`location`/recognizer/`recognizer``
|
|
7056
7140
|
# Corresponds to the JSON property `speechRecognizer`
|
|
@@ -7063,6 +7147,7 @@ module Google
|
|
|
7063
7147
|
|
|
7064
7148
|
# Update properties of this object
|
|
7065
7149
|
def update!(**args)
|
|
7150
|
+
@disable_word_time_offsets = args[:disable_word_time_offsets] if args.key?(:disable_word_time_offsets)
|
|
7066
7151
|
@speech_recognizer = args[:speech_recognizer] if args.key?(:speech_recognizer)
|
|
7067
7152
|
end
|
|
7068
7153
|
end
|
|
@@ -11096,7 +11181,9 @@ module Google
|
|
|
11096
11181
|
class GoogleCloudContactcenterinsightsV1alpha1QaAnswer
|
|
11097
11182
|
include Google::Apis::Core::Hashable
|
|
11098
11183
|
|
|
11099
|
-
#
|
|
11184
|
+
# Lists all answer sources containing one or more answer values of a specific
|
|
11185
|
+
# source type, e.g., all system-generated answer sources, or all manual edit
|
|
11186
|
+
# answer sources.
|
|
11100
11187
|
# Corresponds to the JSON property `answerSources`
|
|
11101
11188
|
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerSource>]
|
|
11102
11189
|
attr_accessor :answer_sources
|
|
@@ -12189,6 +12276,13 @@ module Google
|
|
|
12189
12276
|
class GoogleCloudContactcenterinsightsV1alpha1SpeechConfig
|
|
12190
12277
|
include Google::Apis::Core::Hashable
|
|
12191
12278
|
|
|
12279
|
+
# Whether to disable word time offsets. If true, the `enable_word_time_offsets`
|
|
12280
|
+
# field in the recognition config will be set to false.
|
|
12281
|
+
# Corresponds to the JSON property `disableWordTimeOffsets`
|
|
12282
|
+
# @return [Boolean]
|
|
12283
|
+
attr_accessor :disable_word_time_offsets
|
|
12284
|
+
alias_method :disable_word_time_offsets?, :disable_word_time_offsets
|
|
12285
|
+
|
|
12192
12286
|
# The fully-qualified Speech Recognizer resource name. Format: `projects/`
|
|
12193
12287
|
# project_id`/locations/`location`/recognizer/`recognizer``
|
|
12194
12288
|
# Corresponds to the JSON property `speechRecognizer`
|
|
@@ -12201,6 +12295,7 @@ module Google
|
|
|
12201
12295
|
|
|
12202
12296
|
# Update properties of this object
|
|
12203
12297
|
def update!(**args)
|
|
12298
|
+
@disable_word_time_offsets = args[:disable_word_time_offsets] if args.key?(:disable_word_time_offsets)
|
|
12204
12299
|
@speech_recognizer = args[:speech_recognizer] if args.key?(:speech_recognizer)
|
|
12205
12300
|
end
|
|
12206
12301
|
end
|
|
@@ -16374,7 +16469,9 @@ module Google
|
|
|
16374
16469
|
class GoogleCloudContactcenterinsightsV1mainQaAnswer
|
|
16375
16470
|
include Google::Apis::Core::Hashable
|
|
16376
16471
|
|
|
16377
|
-
#
|
|
16472
|
+
# Lists all answer sources containing one or more answer values of a specific
|
|
16473
|
+
# source type, e.g., all system-generated answer sources, or all manual edit
|
|
16474
|
+
# answer sources.
|
|
16378
16475
|
# Corresponds to the JSON property `answerSources`
|
|
16379
16476
|
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainQaAnswerAnswerSource>]
|
|
16380
16477
|
attr_accessor :answer_sources
|
|
@@ -17467,6 +17564,13 @@ module Google
|
|
|
17467
17564
|
class GoogleCloudContactcenterinsightsV1mainSpeechConfig
|
|
17468
17565
|
include Google::Apis::Core::Hashable
|
|
17469
17566
|
|
|
17567
|
+
# Whether to disable word time offsets. If true, the `enable_word_time_offsets`
|
|
17568
|
+
# field in the recognition config will be set to false.
|
|
17569
|
+
# Corresponds to the JSON property `disableWordTimeOffsets`
|
|
17570
|
+
# @return [Boolean]
|
|
17571
|
+
attr_accessor :disable_word_time_offsets
|
|
17572
|
+
alias_method :disable_word_time_offsets?, :disable_word_time_offsets
|
|
17573
|
+
|
|
17470
17574
|
# The fully-qualified Speech Recognizer resource name. Format: `projects/`
|
|
17471
17575
|
# project_id`/locations/`location`/recognizer/`recognizer``
|
|
17472
17576
|
# Corresponds to the JSON property `speechRecognizer`
|
|
@@ -17479,6 +17583,7 @@ module Google
|
|
|
17479
17583
|
|
|
17480
17584
|
# Update properties of this object
|
|
17481
17585
|
def update!(**args)
|
|
17586
|
+
@disable_word_time_offsets = args[:disable_word_time_offsets] if args.key?(:disable_word_time_offsets)
|
|
17482
17587
|
@speech_recognizer = args[:speech_recognizer] if args.key?(:speech_recognizer)
|
|
17483
17588
|
end
|
|
17484
17589
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContactcenterinsightsV1
|
|
18
18
|
# Version of the google-apis-contactcenterinsights_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.80.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251219"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -280,6 +280,12 @@ module Google
|
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
|
281
281
|
end
|
|
282
282
|
|
|
283
|
+
class GoogleCloudContactcenterinsightsV1ConversationDataSourceTurnLevelAudio
|
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
|
+
|
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
287
|
+
end
|
|
288
|
+
|
|
283
289
|
class GoogleCloudContactcenterinsightsV1ConversationLevelSentiment
|
|
284
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
291
|
|
|
@@ -610,6 +616,12 @@ module Google
|
|
|
610
616
|
include Google::Apis::Core::JsonObjectSupport
|
|
611
617
|
end
|
|
612
618
|
|
|
619
|
+
class GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse
|
|
620
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
621
|
+
|
|
622
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
623
|
+
end
|
|
624
|
+
|
|
613
625
|
class GoogleCloudContactcenterinsightsV1HoldData
|
|
614
626
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
615
627
|
|
|
@@ -1186,6 +1198,12 @@ module Google
|
|
|
1186
1198
|
include Google::Apis::Core::JsonObjectSupport
|
|
1187
1199
|
end
|
|
1188
1200
|
|
|
1201
|
+
class GoogleCloudContactcenterinsightsV1SignedAudioUris
|
|
1202
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1203
|
+
|
|
1204
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1205
|
+
end
|
|
1206
|
+
|
|
1189
1207
|
class GoogleCloudContactcenterinsightsV1SilenceData
|
|
1190
1208
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1191
1209
|
|
|
@@ -3564,6 +3582,14 @@ module Google
|
|
|
3564
3582
|
end
|
|
3565
3583
|
end
|
|
3566
3584
|
|
|
3585
|
+
class GoogleCloudContactcenterinsightsV1ConversationDataSourceTurnLevelAudio
|
|
3586
|
+
# @private
|
|
3587
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3588
|
+
property :audio_duration, as: 'audioDuration'
|
|
3589
|
+
property :audio_gcs_uri, as: 'audioGcsUri'
|
|
3590
|
+
end
|
|
3591
|
+
end
|
|
3592
|
+
|
|
3567
3593
|
class GoogleCloudContactcenterinsightsV1ConversationLevelSentiment
|
|
3568
3594
|
# @private
|
|
3569
3595
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4099,6 +4125,14 @@ module Google
|
|
|
4099
4125
|
end
|
|
4100
4126
|
end
|
|
4101
4127
|
|
|
4128
|
+
class GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse
|
|
4129
|
+
# @private
|
|
4130
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4131
|
+
property :signed_audio_uris, as: 'signedAudioUris', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SignedAudioUris, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SignedAudioUris::Representation
|
|
4132
|
+
|
|
4133
|
+
end
|
|
4134
|
+
end
|
|
4135
|
+
|
|
4102
4136
|
class GoogleCloudContactcenterinsightsV1HoldData
|
|
4103
4137
|
# @private
|
|
4104
4138
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5072,6 +5106,16 @@ module Google
|
|
|
5072
5106
|
end
|
|
5073
5107
|
end
|
|
5074
5108
|
|
|
5109
|
+
class GoogleCloudContactcenterinsightsV1SignedAudioUris
|
|
5110
|
+
# @private
|
|
5111
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5112
|
+
property :signed_dialogflow_audio_uri, as: 'signedDialogflowAudioUri'
|
|
5113
|
+
property :signed_gcs_audio_uri, as: 'signedGcsAudioUri'
|
|
5114
|
+
collection :signed_turn_level_audios, as: 'signedTurnLevelAudios', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationDataSourceTurnLevelAudio, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationDataSourceTurnLevelAudio::Representation
|
|
5115
|
+
|
|
5116
|
+
end
|
|
5117
|
+
end
|
|
5118
|
+
|
|
5075
5119
|
class GoogleCloudContactcenterinsightsV1SilenceData
|
|
5076
5120
|
# @private
|
|
5077
5121
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5101,6 +5145,7 @@ module Google
|
|
|
5101
5145
|
class GoogleCloudContactcenterinsightsV1SpeechConfig
|
|
5102
5146
|
# @private
|
|
5103
5147
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5148
|
+
property :disable_word_time_offsets, as: 'disableWordTimeOffsets'
|
|
5104
5149
|
property :speech_recognizer, as: 'speechRecognizer'
|
|
5105
5150
|
end
|
|
5106
5151
|
end
|
|
@@ -6592,6 +6637,7 @@ module Google
|
|
|
6592
6637
|
class GoogleCloudContactcenterinsightsV1alpha1SpeechConfig
|
|
6593
6638
|
# @private
|
|
6594
6639
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6640
|
+
property :disable_word_time_offsets, as: 'disableWordTimeOffsets'
|
|
6595
6641
|
property :speech_recognizer, as: 'speechRecognizer'
|
|
6596
6642
|
end
|
|
6597
6643
|
end
|
|
@@ -8116,6 +8162,7 @@ module Google
|
|
|
8116
8162
|
class GoogleCloudContactcenterinsightsV1mainSpeechConfig
|
|
8117
8163
|
# @private
|
|
8118
8164
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8165
|
+
property :disable_word_time_offsets, as: 'disableWordTimeOffsets'
|
|
8119
8166
|
property :speech_recognizer, as: 'speechRecognizer'
|
|
8120
8167
|
end
|
|
8121
8168
|
end
|
|
@@ -1415,6 +1415,36 @@ module Google
|
|
|
1415
1415
|
execute_or_queue_command(command, &block)
|
|
1416
1416
|
end
|
|
1417
1417
|
|
|
1418
|
+
# Gets the signed URI for the audio for the given conversation.
|
|
1419
|
+
# @param [String] name
|
|
1420
|
+
# Required. The name of the conversation to sign.
|
|
1421
|
+
# @param [String] fields
|
|
1422
|
+
# Selector specifying which fields to include in a partial response.
|
|
1423
|
+
# @param [String] quota_user
|
|
1424
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1425
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1426
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1427
|
+
# Request-specific options
|
|
1428
|
+
#
|
|
1429
|
+
# @yield [result, err] Result & error if block supplied
|
|
1430
|
+
# @yieldparam result [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse] parsed result object
|
|
1431
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1432
|
+
#
|
|
1433
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse]
|
|
1434
|
+
#
|
|
1435
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1436
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1437
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1438
|
+
def generate_project_location_authorized_view_set_authorized_view_conversation_signed_audio(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
1439
|
+
command = make_simple_command(:get, 'v1/{+name}:generateSignedAudio', options)
|
|
1440
|
+
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse::Representation
|
|
1441
|
+
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse
|
|
1442
|
+
command.params['name'] = name unless name.nil?
|
|
1443
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1444
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1445
|
+
execute_or_queue_command(command, &block)
|
|
1446
|
+
end
|
|
1447
|
+
|
|
1418
1448
|
# Gets a conversation.
|
|
1419
1449
|
# @param [String] name
|
|
1420
1450
|
# Required. The name of the conversation to get.
|
|
@@ -2366,6 +2396,36 @@ module Google
|
|
|
2366
2396
|
execute_or_queue_command(command, &block)
|
|
2367
2397
|
end
|
|
2368
2398
|
|
|
2399
|
+
# Gets the signed URI for the audio for the given conversation.
|
|
2400
|
+
# @param [String] name
|
|
2401
|
+
# Required. The name of the conversation to sign.
|
|
2402
|
+
# @param [String] fields
|
|
2403
|
+
# Selector specifying which fields to include in a partial response.
|
|
2404
|
+
# @param [String] quota_user
|
|
2405
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2406
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2407
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2408
|
+
# Request-specific options
|
|
2409
|
+
#
|
|
2410
|
+
# @yield [result, err] Result & error if block supplied
|
|
2411
|
+
# @yieldparam result [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse] parsed result object
|
|
2412
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2413
|
+
#
|
|
2414
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse]
|
|
2415
|
+
#
|
|
2416
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2417
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2418
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2419
|
+
def generate_project_location_conversation_signed_audio(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
2420
|
+
command = make_simple_command(:get, 'v1/{+name}:generateSignedAudio', options)
|
|
2421
|
+
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse::Representation
|
|
2422
|
+
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse
|
|
2423
|
+
command.params['name'] = name unless name.nil?
|
|
2424
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2425
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2426
|
+
execute_or_queue_command(command, &block)
|
|
2427
|
+
end
|
|
2428
|
+
|
|
2369
2429
|
# Gets a conversation.
|
|
2370
2430
|
# @param [String] name
|
|
2371
2431
|
# Required. The name of the conversation to get.
|
|
@@ -3775,6 +3835,36 @@ module Google
|
|
|
3775
3835
|
execute_or_queue_command(command, &block)
|
|
3776
3836
|
end
|
|
3777
3837
|
|
|
3838
|
+
# Gets the signed URI for the audio for the given conversation.
|
|
3839
|
+
# @param [String] name
|
|
3840
|
+
# Required. The name of the conversation to sign.
|
|
3841
|
+
# @param [String] fields
|
|
3842
|
+
# Selector specifying which fields to include in a partial response.
|
|
3843
|
+
# @param [String] quota_user
|
|
3844
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
3845
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
3846
|
+
# @param [Google::Apis::RequestOptions] options
|
|
3847
|
+
# Request-specific options
|
|
3848
|
+
#
|
|
3849
|
+
# @yield [result, err] Result & error if block supplied
|
|
3850
|
+
# @yieldparam result [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse] parsed result object
|
|
3851
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
3852
|
+
#
|
|
3853
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse]
|
|
3854
|
+
#
|
|
3855
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3856
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3857
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3858
|
+
def generate_project_location_dataset_conversation_signed_audio(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
3859
|
+
command = make_simple_command(:get, 'v1/{+name}:generateSignedAudio', options)
|
|
3860
|
+
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse::Representation
|
|
3861
|
+
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse
|
|
3862
|
+
command.params['name'] = name unless name.nil?
|
|
3863
|
+
command.query['fields'] = fields unless fields.nil?
|
|
3864
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3865
|
+
execute_or_queue_command(command, &block)
|
|
3866
|
+
end
|
|
3867
|
+
|
|
3778
3868
|
# Gets a conversation.
|
|
3779
3869
|
# @param [String] name
|
|
3780
3870
|
# Required. The name of the conversation to get.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-contactcenterinsights_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.80.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.80.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|