google-apis-contactcenterinsights_v1 0.59.0 → 0.61.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 +8 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +262 -0
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +2 -2
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +165 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +33 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b64eca4596cab396bfb71ae9656263fa48dbf730a872cc0ceaef78a477fd85b7
|
4
|
+
data.tar.gz: 6f947f7437684f326c90c4736866608ff70b26c208dfa783a932741bc49495f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a09358f0d8378c9c9ba74999ffe0c61a512f8f4ad6aef6f066f8281a595d6b6aeaab77eff4db3db84094b7edf9df75e9c3c4804c238e7b3a45160a334eb224b
|
7
|
+
data.tar.gz: 422a2f6456cdcddb20e74485bdf1093ea5c9cf6e758d7b1ea5f7feb17a02df0f67939b56f5e0989a7810081c66cc337a163dbf3aed988f0d0cff289404be5e21
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-contactcenterinsights_v1
|
2
2
|
|
3
|
+
### v0.61.0 (2025-03-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250320
|
6
|
+
|
7
|
+
### v0.60.0 (2025-03-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250311
|
10
|
+
|
3
11
|
### v0.59.0 (2025-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250224
|
@@ -731,6 +731,74 @@ module Google
|
|
731
731
|
end
|
732
732
|
end
|
733
733
|
|
734
|
+
# Metadata for the BulkDeleteFeedbackLabels endpoint.
|
735
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsMetadata
|
736
|
+
include Google::Apis::Core::Hashable
|
737
|
+
|
738
|
+
# Partial errors during deletion operation that might cause the operation output
|
739
|
+
# to be incomplete.
|
740
|
+
# Corresponds to the JSON property `partialErrors`
|
741
|
+
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus>]
|
742
|
+
attr_accessor :partial_errors
|
743
|
+
|
744
|
+
# Request for the BulkDeleteFeedbackLabels endpoint.
|
745
|
+
# Corresponds to the JSON property `request`
|
746
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest]
|
747
|
+
attr_accessor :request
|
748
|
+
|
749
|
+
def initialize(**args)
|
750
|
+
update!(**args)
|
751
|
+
end
|
752
|
+
|
753
|
+
# Update properties of this object
|
754
|
+
def update!(**args)
|
755
|
+
@partial_errors = args[:partial_errors] if args.key?(:partial_errors)
|
756
|
+
@request = args[:request] if args.key?(:request)
|
757
|
+
end
|
758
|
+
end
|
759
|
+
|
760
|
+
# Request for the BulkDeleteFeedbackLabels endpoint.
|
761
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest
|
762
|
+
include Google::Apis::Core::Hashable
|
763
|
+
|
764
|
+
# Optional. A filter to reduce results to a specific subset. Supports
|
765
|
+
# disjunctions (OR) and conjunctions (AND). Supported fields: * `issue_model_id`
|
766
|
+
# * `qa_question_id` * `qa_scorecard_id` * `min_create_time` * `max_create_time`
|
767
|
+
# * `min_update_time` * `max_update_time` * `feedback_label_type`: QUALITY_AI,
|
768
|
+
# TOPIC_MODELING
|
769
|
+
# Corresponds to the JSON property `filter`
|
770
|
+
# @return [String]
|
771
|
+
attr_accessor :filter
|
772
|
+
|
773
|
+
# Required. The parent resource for new feedback labels.
|
774
|
+
# Corresponds to the JSON property `parent`
|
775
|
+
# @return [String]
|
776
|
+
attr_accessor :parent
|
777
|
+
|
778
|
+
def initialize(**args)
|
779
|
+
update!(**args)
|
780
|
+
end
|
781
|
+
|
782
|
+
# Update properties of this object
|
783
|
+
def update!(**args)
|
784
|
+
@filter = args[:filter] if args.key?(:filter)
|
785
|
+
@parent = args[:parent] if args.key?(:parent)
|
786
|
+
end
|
787
|
+
end
|
788
|
+
|
789
|
+
# Response for the BulkDeleteFeedbackLabels endpoint.
|
790
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsResponse
|
791
|
+
include Google::Apis::Core::Hashable
|
792
|
+
|
793
|
+
def initialize(**args)
|
794
|
+
update!(**args)
|
795
|
+
end
|
796
|
+
|
797
|
+
# Update properties of this object
|
798
|
+
def update!(**args)
|
799
|
+
end
|
800
|
+
end
|
801
|
+
|
734
802
|
# Metadata for the BulkDownloadFeedbackLabel endpoint.
|
735
803
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsMetadata
|
736
804
|
include Google::Apis::Core::Hashable
|
@@ -856,6 +924,11 @@ module Google
|
|
856
924
|
# @return [String]
|
857
925
|
attr_accessor :parent
|
858
926
|
|
927
|
+
# Google Sheets document details to write the feedback labels to.
|
928
|
+
# Corresponds to the JSON property `sheetsDestination`
|
929
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination]
|
930
|
+
attr_accessor :sheets_destination
|
931
|
+
|
859
932
|
# Optional. If set, a template for labeling conversations and scorecard
|
860
933
|
# questions will be created from the conversation_filter and the questions under
|
861
934
|
# the scorecard(s). The feedback label `filter` will be ignored.
|
@@ -875,6 +948,7 @@ module Google
|
|
875
948
|
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
|
876
949
|
@max_download_count = args[:max_download_count] if args.key?(:max_download_count)
|
877
950
|
@parent = args[:parent] if args.key?(:parent)
|
951
|
+
@sheets_destination = args[:sheets_destination] if args.key?(:sheets_destination)
|
878
952
|
@template_qa_scorecard_id = args[:template_qa_scorecard_id] if args.key?(:template_qa_scorecard_id)
|
879
953
|
end
|
880
954
|
end
|
@@ -931,6 +1005,35 @@ module Google
|
|
931
1005
|
end
|
932
1006
|
end
|
933
1007
|
|
1008
|
+
# Google Sheets document details to write the feedback labels to.
|
1009
|
+
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination
|
1010
|
+
include Google::Apis::Core::Hashable
|
1011
|
+
|
1012
|
+
# Optional. The title of the new sheet to write the feedback labels to.
|
1013
|
+
# Corresponds to the JSON property `sheetTitle`
|
1014
|
+
# @return [String]
|
1015
|
+
attr_accessor :sheet_title
|
1016
|
+
|
1017
|
+
# Required. The Google Sheets document to write the feedback labels to.
|
1018
|
+
# Retrieved from Google Sheets URI. E.g. `https://docs.google.com/spreadsheets/d/
|
1019
|
+
# 1234567890` The spreadsheet must be shared with the Insights P4SA. The
|
1020
|
+
# spreadsheet ID written to will be returned as `file_names` in the
|
1021
|
+
# BulkDownloadFeedbackLabelsMetadata.
|
1022
|
+
# Corresponds to the JSON property `spreadsheetUri`
|
1023
|
+
# @return [String]
|
1024
|
+
attr_accessor :spreadsheet_uri
|
1025
|
+
|
1026
|
+
def initialize(**args)
|
1027
|
+
update!(**args)
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
# Update properties of this object
|
1031
|
+
def update!(**args)
|
1032
|
+
@sheet_title = args[:sheet_title] if args.key?(:sheet_title)
|
1033
|
+
@spreadsheet_uri = args[:spreadsheet_uri] if args.key?(:spreadsheet_uri)
|
1034
|
+
end
|
1035
|
+
end
|
1036
|
+
|
934
1037
|
# Response for the BulkDownloadFeedbackLabel endpoint.
|
935
1038
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsResponse
|
936
1039
|
include Google::Apis::Core::Hashable
|
@@ -953,6 +1056,11 @@ module Google
|
|
953
1056
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource]
|
954
1057
|
attr_accessor :gcs_source
|
955
1058
|
|
1059
|
+
# Google Sheets document details to get the feedback label file from.
|
1060
|
+
# Corresponds to the JSON property `sheetsSource`
|
1061
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource]
|
1062
|
+
attr_accessor :sheets_source
|
1063
|
+
|
956
1064
|
# Optional. If set, upload will not happen and the labels will be validated. If
|
957
1065
|
# not set, then default behavior will be to upload the labels after validation
|
958
1066
|
# is complete.
|
@@ -968,6 +1076,7 @@ module Google
|
|
968
1076
|
# Update properties of this object
|
969
1077
|
def update!(**args)
|
970
1078
|
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
1079
|
+
@sheets_source = args[:sheets_source] if args.key?(:sheets_source)
|
971
1080
|
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
972
1081
|
end
|
973
1082
|
end
|
@@ -998,6 +1107,27 @@ module Google
|
|
998
1107
|
end
|
999
1108
|
end
|
1000
1109
|
|
1110
|
+
# Google Sheets document details to get the feedback label file from.
|
1111
|
+
class GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource
|
1112
|
+
include Google::Apis::Core::Hashable
|
1113
|
+
|
1114
|
+
# Required. The Google Sheets document to write the feedback labels to.
|
1115
|
+
# Retrieved from Google Sheets URI. E.g. `https://docs.google.com/spreadsheets/d/
|
1116
|
+
# 1234567890` The spreadsheet must be shared with the Insights P4SA.
|
1117
|
+
# Corresponds to the JSON property `spreadsheetUri`
|
1118
|
+
# @return [String]
|
1119
|
+
attr_accessor :spreadsheet_uri
|
1120
|
+
|
1121
|
+
def initialize(**args)
|
1122
|
+
update!(**args)
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
# Update properties of this object
|
1126
|
+
def update!(**args)
|
1127
|
+
@spreadsheet_uri = args[:spreadsheet_uri] if args.key?(:spreadsheet_uri)
|
1128
|
+
end
|
1129
|
+
end
|
1130
|
+
|
1001
1131
|
# Response of querying an issue model's statistics.
|
1002
1132
|
class GoogleCloudContactcenterinsightsV1CalculateIssueModelStatsResponse
|
1003
1133
|
include Google::Apis::Core::Hashable
|
@@ -5056,6 +5186,38 @@ module Google
|
|
5056
5186
|
end
|
5057
5187
|
end
|
5058
5188
|
|
5189
|
+
# The metadata for querying performance overview.
|
5190
|
+
class GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewMetadata
|
5191
|
+
include Google::Apis::Core::Hashable
|
5192
|
+
|
5193
|
+
def initialize(**args)
|
5194
|
+
update!(**args)
|
5195
|
+
end
|
5196
|
+
|
5197
|
+
# Update properties of this object
|
5198
|
+
def update!(**args)
|
5199
|
+
end
|
5200
|
+
end
|
5201
|
+
|
5202
|
+
# The response for querying performance overview.
|
5203
|
+
class GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewResponse
|
5204
|
+
include Google::Apis::Core::Hashable
|
5205
|
+
|
5206
|
+
# The summary text of the performance.
|
5207
|
+
# Corresponds to the JSON property `summaryText`
|
5208
|
+
# @return [String]
|
5209
|
+
attr_accessor :summary_text
|
5210
|
+
|
5211
|
+
def initialize(**args)
|
5212
|
+
update!(**args)
|
5213
|
+
end
|
5214
|
+
|
5215
|
+
# Update properties of this object
|
5216
|
+
def update!(**args)
|
5217
|
+
@summary_text = args[:summary_text] if args.key?(:summary_text)
|
5218
|
+
end
|
5219
|
+
end
|
5220
|
+
|
5059
5221
|
# DLP resources used for redaction while ingesting conversations. DLP settings
|
5060
5222
|
# are applied to conversations ingested from the `UploadConversation` and `
|
5061
5223
|
# IngestConversations` endpoints, including conversation coming from CCAI
|
@@ -6376,6 +6538,74 @@ module Google
|
|
6376
6538
|
end
|
6377
6539
|
end
|
6378
6540
|
|
6541
|
+
# Metadata for the BulkDeleteFeedbackLabels endpoint.
|
6542
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsMetadata
|
6543
|
+
include Google::Apis::Core::Hashable
|
6544
|
+
|
6545
|
+
# Partial errors during deletion operation that might cause the operation output
|
6546
|
+
# to be incomplete.
|
6547
|
+
# Corresponds to the JSON property `partialErrors`
|
6548
|
+
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus>]
|
6549
|
+
attr_accessor :partial_errors
|
6550
|
+
|
6551
|
+
# Request for the BulkDeleteFeedbackLabels endpoint.
|
6552
|
+
# Corresponds to the JSON property `request`
|
6553
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest]
|
6554
|
+
attr_accessor :request
|
6555
|
+
|
6556
|
+
def initialize(**args)
|
6557
|
+
update!(**args)
|
6558
|
+
end
|
6559
|
+
|
6560
|
+
# Update properties of this object
|
6561
|
+
def update!(**args)
|
6562
|
+
@partial_errors = args[:partial_errors] if args.key?(:partial_errors)
|
6563
|
+
@request = args[:request] if args.key?(:request)
|
6564
|
+
end
|
6565
|
+
end
|
6566
|
+
|
6567
|
+
# Request for the BulkDeleteFeedbackLabels endpoint.
|
6568
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest
|
6569
|
+
include Google::Apis::Core::Hashable
|
6570
|
+
|
6571
|
+
# Optional. A filter to reduce results to a specific subset. Supports
|
6572
|
+
# disjunctions (OR) and conjunctions (AND). Supported fields: * `issue_model_id`
|
6573
|
+
# * `qa_question_id` * `qa_scorecard_id` * `min_create_time` * `max_create_time`
|
6574
|
+
# * `min_update_time` * `max_update_time` * `feedback_label_type`: QUALITY_AI,
|
6575
|
+
# TOPIC_MODELING
|
6576
|
+
# Corresponds to the JSON property `filter`
|
6577
|
+
# @return [String]
|
6578
|
+
attr_accessor :filter
|
6579
|
+
|
6580
|
+
# Required. The parent resource for new feedback labels.
|
6581
|
+
# Corresponds to the JSON property `parent`
|
6582
|
+
# @return [String]
|
6583
|
+
attr_accessor :parent
|
6584
|
+
|
6585
|
+
def initialize(**args)
|
6586
|
+
update!(**args)
|
6587
|
+
end
|
6588
|
+
|
6589
|
+
# Update properties of this object
|
6590
|
+
def update!(**args)
|
6591
|
+
@filter = args[:filter] if args.key?(:filter)
|
6592
|
+
@parent = args[:parent] if args.key?(:parent)
|
6593
|
+
end
|
6594
|
+
end
|
6595
|
+
|
6596
|
+
# Response for the BulkDeleteFeedbackLabels endpoint.
|
6597
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsResponse
|
6598
|
+
include Google::Apis::Core::Hashable
|
6599
|
+
|
6600
|
+
def initialize(**args)
|
6601
|
+
update!(**args)
|
6602
|
+
end
|
6603
|
+
|
6604
|
+
# Update properties of this object
|
6605
|
+
def update!(**args)
|
6606
|
+
end
|
6607
|
+
end
|
6608
|
+
|
6379
6609
|
# A piece of metadata that applies to a window of a call.
|
6380
6610
|
class GoogleCloudContactcenterinsightsV1alpha1CallAnnotation
|
6381
6611
|
include Google::Apis::Core::Hashable
|
@@ -9514,6 +9744,38 @@ module Google
|
|
9514
9744
|
end
|
9515
9745
|
end
|
9516
9746
|
|
9747
|
+
# The metadata for querying performance overview.
|
9748
|
+
class GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewMetadata
|
9749
|
+
include Google::Apis::Core::Hashable
|
9750
|
+
|
9751
|
+
def initialize(**args)
|
9752
|
+
update!(**args)
|
9753
|
+
end
|
9754
|
+
|
9755
|
+
# Update properties of this object
|
9756
|
+
def update!(**args)
|
9757
|
+
end
|
9758
|
+
end
|
9759
|
+
|
9760
|
+
# The response for querying performance overview.
|
9761
|
+
class GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewResponse
|
9762
|
+
include Google::Apis::Core::Hashable
|
9763
|
+
|
9764
|
+
# The summary text of the performance.
|
9765
|
+
# Corresponds to the JSON property `summaryText`
|
9766
|
+
# @return [String]
|
9767
|
+
attr_accessor :summary_text
|
9768
|
+
|
9769
|
+
def initialize(**args)
|
9770
|
+
update!(**args)
|
9771
|
+
end
|
9772
|
+
|
9773
|
+
# Update properties of this object
|
9774
|
+
def update!(**args)
|
9775
|
+
@summary_text = args[:summary_text] if args.key?(:summary_text)
|
9776
|
+
end
|
9777
|
+
end
|
9778
|
+
|
9517
9779
|
# DLP resources used for redaction while ingesting conversations. DLP settings
|
9518
9780
|
# are applied to conversations ingested from the `UploadConversation` and `
|
9519
9781
|
# IngestConversations` endpoints, including conversation coming from CCAI
|
@@ -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.61.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250320"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,24 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsMetadata
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
133
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
139
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsResponse
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
127
145
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsMetadata
|
128
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
147
|
|
@@ -148,6 +166,12 @@ module Google
|
|
148
166
|
include Google::Apis::Core::JsonObjectSupport
|
149
167
|
end
|
150
168
|
|
169
|
+
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
151
175
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsResponse
|
152
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
177
|
|
@@ -166,6 +190,12 @@ module Google
|
|
166
190
|
include Google::Apis::Core::JsonObjectSupport
|
167
191
|
end
|
168
192
|
|
193
|
+
class GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
169
199
|
class GoogleCloudContactcenterinsightsV1CalculateIssueModelStatsResponse
|
170
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
201
|
|
@@ -856,6 +886,18 @@ module Google
|
|
856
886
|
include Google::Apis::Core::JsonObjectSupport
|
857
887
|
end
|
858
888
|
|
889
|
+
class GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewMetadata
|
890
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
891
|
+
|
892
|
+
include Google::Apis::Core::JsonObjectSupport
|
893
|
+
end
|
894
|
+
|
895
|
+
class GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewResponse
|
896
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
897
|
+
|
898
|
+
include Google::Apis::Core::JsonObjectSupport
|
899
|
+
end
|
900
|
+
|
859
901
|
class GoogleCloudContactcenterinsightsV1RedactionConfig
|
860
902
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
861
903
|
|
@@ -1060,6 +1102,24 @@ module Google
|
|
1060
1102
|
include Google::Apis::Core::JsonObjectSupport
|
1061
1103
|
end
|
1062
1104
|
|
1105
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsMetadata
|
1106
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1107
|
+
|
1108
|
+
include Google::Apis::Core::JsonObjectSupport
|
1109
|
+
end
|
1110
|
+
|
1111
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest
|
1112
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1113
|
+
|
1114
|
+
include Google::Apis::Core::JsonObjectSupport
|
1115
|
+
end
|
1116
|
+
|
1117
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsResponse
|
1118
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1119
|
+
|
1120
|
+
include Google::Apis::Core::JsonObjectSupport
|
1121
|
+
end
|
1122
|
+
|
1063
1123
|
class GoogleCloudContactcenterinsightsV1alpha1CallAnnotation
|
1064
1124
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1065
1125
|
|
@@ -1588,6 +1648,18 @@ module Google
|
|
1588
1648
|
include Google::Apis::Core::JsonObjectSupport
|
1589
1649
|
end
|
1590
1650
|
|
1651
|
+
class GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewMetadata
|
1652
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1653
|
+
|
1654
|
+
include Google::Apis::Core::JsonObjectSupport
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
class GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewResponse
|
1658
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1659
|
+
|
1660
|
+
include Google::Apis::Core::JsonObjectSupport
|
1661
|
+
end
|
1662
|
+
|
1591
1663
|
class GoogleCloudContactcenterinsightsV1alpha1RedactionConfig
|
1592
1664
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1593
1665
|
|
@@ -1891,6 +1963,30 @@ module Google
|
|
1891
1963
|
end
|
1892
1964
|
end
|
1893
1965
|
|
1966
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsMetadata
|
1967
|
+
# @private
|
1968
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1969
|
+
collection :partial_errors, as: 'partialErrors', class: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus, decorator: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus::Representation
|
1970
|
+
|
1971
|
+
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest::Representation
|
1972
|
+
|
1973
|
+
end
|
1974
|
+
end
|
1975
|
+
|
1976
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest
|
1977
|
+
# @private
|
1978
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1979
|
+
property :filter, as: 'filter'
|
1980
|
+
property :parent, as: 'parent'
|
1981
|
+
end
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsResponse
|
1985
|
+
# @private
|
1986
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1987
|
+
end
|
1988
|
+
end
|
1989
|
+
|
1894
1990
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsMetadata
|
1895
1991
|
# @private
|
1896
1992
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1925,6 +2021,8 @@ module Google
|
|
1925
2021
|
|
1926
2022
|
property :max_download_count, as: 'maxDownloadCount'
|
1927
2023
|
property :parent, as: 'parent'
|
2024
|
+
property :sheets_destination, as: 'sheetsDestination', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination::Representation
|
2025
|
+
|
1928
2026
|
collection :template_qa_scorecard_id, as: 'templateQaScorecardId'
|
1929
2027
|
end
|
1930
2028
|
end
|
@@ -1940,6 +2038,14 @@ module Google
|
|
1940
2038
|
end
|
1941
2039
|
end
|
1942
2040
|
|
2041
|
+
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination
|
2042
|
+
# @private
|
2043
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2044
|
+
property :sheet_title, as: 'sheetTitle'
|
2045
|
+
property :spreadsheet_uri, as: 'spreadsheetUri'
|
2046
|
+
end
|
2047
|
+
end
|
2048
|
+
|
1943
2049
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsResponse
|
1944
2050
|
# @private
|
1945
2051
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1951,6 +2057,8 @@ module Google
|
|
1951
2057
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1952
2058
|
property :gcs_source, as: 'gcsSource', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource::Representation
|
1953
2059
|
|
2060
|
+
property :sheets_source, as: 'sheetsSource', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource::Representation
|
2061
|
+
|
1954
2062
|
property :validate_only, as: 'validateOnly'
|
1955
2063
|
end
|
1956
2064
|
end
|
@@ -1963,6 +2071,13 @@ module Google
|
|
1963
2071
|
end
|
1964
2072
|
end
|
1965
2073
|
|
2074
|
+
class GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource
|
2075
|
+
# @private
|
2076
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2077
|
+
property :spreadsheet_uri, as: 'spreadsheetUri'
|
2078
|
+
end
|
2079
|
+
end
|
2080
|
+
|
1966
2081
|
class GoogleCloudContactcenterinsightsV1CalculateIssueModelStatsResponse
|
1967
2082
|
# @private
|
1968
2083
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3147,6 +3262,19 @@ module Google
|
|
3147
3262
|
end
|
3148
3263
|
end
|
3149
3264
|
|
3265
|
+
class GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewMetadata
|
3266
|
+
# @private
|
3267
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3268
|
+
end
|
3269
|
+
end
|
3270
|
+
|
3271
|
+
class GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewResponse
|
3272
|
+
# @private
|
3273
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3274
|
+
property :summary_text, as: 'summaryText'
|
3275
|
+
end
|
3276
|
+
end
|
3277
|
+
|
3150
3278
|
class GoogleCloudContactcenterinsightsV1RedactionConfig
|
3151
3279
|
# @private
|
3152
3280
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3516,6 +3644,30 @@ module Google
|
|
3516
3644
|
end
|
3517
3645
|
end
|
3518
3646
|
|
3647
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsMetadata
|
3648
|
+
# @private
|
3649
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3650
|
+
collection :partial_errors, as: 'partialErrors', class: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus, decorator: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus::Representation
|
3651
|
+
|
3652
|
+
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest::Representation
|
3653
|
+
|
3654
|
+
end
|
3655
|
+
end
|
3656
|
+
|
3657
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest
|
3658
|
+
# @private
|
3659
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3660
|
+
property :filter, as: 'filter'
|
3661
|
+
property :parent, as: 'parent'
|
3662
|
+
end
|
3663
|
+
end
|
3664
|
+
|
3665
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsResponse
|
3666
|
+
# @private
|
3667
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3668
|
+
end
|
3669
|
+
end
|
3670
|
+
|
3519
3671
|
class GoogleCloudContactcenterinsightsV1alpha1CallAnnotation
|
3520
3672
|
# @private
|
3521
3673
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4431,6 +4583,19 @@ module Google
|
|
4431
4583
|
end
|
4432
4584
|
end
|
4433
4585
|
|
4586
|
+
class GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewMetadata
|
4587
|
+
# @private
|
4588
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4589
|
+
end
|
4590
|
+
end
|
4591
|
+
|
4592
|
+
class GoogleCloudContactcenterinsightsV1alpha1QueryPerformanceOverviewResponse
|
4593
|
+
# @private
|
4594
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4595
|
+
property :summary_text, as: 'summaryText'
|
4596
|
+
end
|
4597
|
+
end
|
4598
|
+
|
4434
4599
|
class GoogleCloudContactcenterinsightsV1alpha1RedactionConfig
|
4435
4600
|
# @private
|
4436
4601
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -51,6 +51,39 @@ module Google
|
|
51
51
|
@batch_path = 'batch'
|
52
52
|
end
|
53
53
|
|
54
|
+
# Delete feedback labels in bulk using a filter.
|
55
|
+
# @param [String] parent
|
56
|
+
# Required. The parent resource for new feedback labels.
|
57
|
+
# @param [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest] google_cloud_contactcenterinsights_v1_bulk_delete_feedback_labels_request_object
|
58
|
+
# @param [String] fields
|
59
|
+
# Selector specifying which fields to include in a partial response.
|
60
|
+
# @param [String] quota_user
|
61
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
62
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
63
|
+
# @param [Google::Apis::RequestOptions] options
|
64
|
+
# Request-specific options
|
65
|
+
#
|
66
|
+
# @yield [result, err] Result & error if block supplied
|
67
|
+
# @yieldparam result [Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation] parsed result object
|
68
|
+
# @yieldparam err [StandardError] error object if request failed
|
69
|
+
#
|
70
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation]
|
71
|
+
#
|
72
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
73
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
74
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
75
|
+
def bulk_project_location_delete_feedback_labels(parent, google_cloud_contactcenterinsights_v1_bulk_delete_feedback_labels_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
76
|
+
command = make_simple_command(:post, 'v1/{+parent}:bulkDeleteFeedbackLabels', options)
|
77
|
+
command.request_representation = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest::Representation
|
78
|
+
command.request_object = google_cloud_contactcenterinsights_v1_bulk_delete_feedback_labels_request_object
|
79
|
+
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation::Representation
|
80
|
+
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation
|
81
|
+
command.params['parent'] = parent unless parent.nil?
|
82
|
+
command.query['fields'] = fields unless fields.nil?
|
83
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
84
|
+
execute_or_queue_command(command, &block)
|
85
|
+
end
|
86
|
+
|
54
87
|
# Download feedback labels in bulk from an external source. Currently supports
|
55
88
|
# exporting Quality AI example conversations with transcripts and question
|
56
89
|
# bodies.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.61.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-30 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.61.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:
|