google-apis-contactcenterinsights_v1 0.60.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
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
@@ -924,6 +924,11 @@ module Google
|
|
924
924
|
# @return [String]
|
925
925
|
attr_accessor :parent
|
926
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
|
+
|
927
932
|
# Optional. If set, a template for labeling conversations and scorecard
|
928
933
|
# questions will be created from the conversation_filter and the questions under
|
929
934
|
# the scorecard(s). The feedback label `filter` will be ignored.
|
@@ -943,6 +948,7 @@ module Google
|
|
943
948
|
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
|
944
949
|
@max_download_count = args[:max_download_count] if args.key?(:max_download_count)
|
945
950
|
@parent = args[:parent] if args.key?(:parent)
|
951
|
+
@sheets_destination = args[:sheets_destination] if args.key?(:sheets_destination)
|
946
952
|
@template_qa_scorecard_id = args[:template_qa_scorecard_id] if args.key?(:template_qa_scorecard_id)
|
947
953
|
end
|
948
954
|
end
|
@@ -999,6 +1005,35 @@ module Google
|
|
999
1005
|
end
|
1000
1006
|
end
|
1001
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
|
+
|
1002
1037
|
# Response for the BulkDownloadFeedbackLabel endpoint.
|
1003
1038
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsResponse
|
1004
1039
|
include Google::Apis::Core::Hashable
|
@@ -1021,6 +1056,11 @@ module Google
|
|
1021
1056
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource]
|
1022
1057
|
attr_accessor :gcs_source
|
1023
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
|
+
|
1024
1064
|
# Optional. If set, upload will not happen and the labels will be validated. If
|
1025
1065
|
# not set, then default behavior will be to upload the labels after validation
|
1026
1066
|
# is complete.
|
@@ -1036,6 +1076,7 @@ module Google
|
|
1036
1076
|
# Update properties of this object
|
1037
1077
|
def update!(**args)
|
1038
1078
|
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
1079
|
+
@sheets_source = args[:sheets_source] if args.key?(:sheets_source)
|
1039
1080
|
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
1040
1081
|
end
|
1041
1082
|
end
|
@@ -1066,6 +1107,27 @@ module Google
|
|
1066
1107
|
end
|
1067
1108
|
end
|
1068
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
|
+
|
1069
1131
|
# Response of querying an issue model's statistics.
|
1070
1132
|
class GoogleCloudContactcenterinsightsV1CalculateIssueModelStatsResponse
|
1071
1133
|
include Google::Apis::Core::Hashable
|
@@ -5124,6 +5186,38 @@ module Google
|
|
5124
5186
|
end
|
5125
5187
|
end
|
5126
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
|
+
|
5127
5221
|
# DLP resources used for redaction while ingesting conversations. DLP settings
|
5128
5222
|
# are applied to conversations ingested from the `UploadConversation` and `
|
5129
5223
|
# IngestConversations` endpoints, including conversation coming from CCAI
|
@@ -9650,6 +9744,38 @@ module Google
|
|
9650
9744
|
end
|
9651
9745
|
end
|
9652
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
|
+
|
9653
9779
|
# DLP resources used for redaction while ingesting conversations. DLP settings
|
9654
9780
|
# are applied to conversations ingested from the `UploadConversation` and `
|
9655
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
|
@@ -166,6 +166,12 @@ module Google
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
167
167
|
end
|
168
168
|
|
169
|
+
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
169
175
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsResponse
|
170
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
177
|
|
@@ -184,6 +190,12 @@ module Google
|
|
184
190
|
include Google::Apis::Core::JsonObjectSupport
|
185
191
|
end
|
186
192
|
|
193
|
+
class GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
187
199
|
class GoogleCloudContactcenterinsightsV1CalculateIssueModelStatsResponse
|
188
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
201
|
|
@@ -874,6 +886,18 @@ module Google
|
|
874
886
|
include Google::Apis::Core::JsonObjectSupport
|
875
887
|
end
|
876
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
|
+
|
877
901
|
class GoogleCloudContactcenterinsightsV1RedactionConfig
|
878
902
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
879
903
|
|
@@ -1624,6 +1648,18 @@ module Google
|
|
1624
1648
|
include Google::Apis::Core::JsonObjectSupport
|
1625
1649
|
end
|
1626
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
|
+
|
1627
1663
|
class GoogleCloudContactcenterinsightsV1alpha1RedactionConfig
|
1628
1664
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1629
1665
|
|
@@ -1985,6 +2021,8 @@ module Google
|
|
1985
2021
|
|
1986
2022
|
property :max_download_count, as: 'maxDownloadCount'
|
1987
2023
|
property :parent, as: 'parent'
|
2024
|
+
property :sheets_destination, as: 'sheetsDestination', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequestSheetsDestination::Representation
|
2025
|
+
|
1988
2026
|
collection :template_qa_scorecard_id, as: 'templateQaScorecardId'
|
1989
2027
|
end
|
1990
2028
|
end
|
@@ -2000,6 +2038,14 @@ module Google
|
|
2000
2038
|
end
|
2001
2039
|
end
|
2002
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
|
+
|
2003
2049
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsResponse
|
2004
2050
|
# @private
|
2005
2051
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2011,6 +2057,8 @@ module Google
|
|
2011
2057
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2012
2058
|
property :gcs_source, as: 'gcsSource', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource::Representation
|
2013
2059
|
|
2060
|
+
property :sheets_source, as: 'sheetsSource', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource::Representation
|
2061
|
+
|
2014
2062
|
property :validate_only, as: 'validateOnly'
|
2015
2063
|
end
|
2016
2064
|
end
|
@@ -2023,6 +2071,13 @@ module Google
|
|
2023
2071
|
end
|
2024
2072
|
end
|
2025
2073
|
|
2074
|
+
class GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestSheetsSource
|
2075
|
+
# @private
|
2076
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2077
|
+
property :spreadsheet_uri, as: 'spreadsheetUri'
|
2078
|
+
end
|
2079
|
+
end
|
2080
|
+
|
2026
2081
|
class GoogleCloudContactcenterinsightsV1CalculateIssueModelStatsResponse
|
2027
2082
|
# @private
|
2028
2083
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3207,6 +3262,19 @@ module Google
|
|
3207
3262
|
end
|
3208
3263
|
end
|
3209
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
|
+
|
3210
3278
|
class GoogleCloudContactcenterinsightsV1RedactionConfig
|
3211
3279
|
# @private
|
3212
3280
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4515,6 +4583,19 @@ module Google
|
|
4515
4583
|
end
|
4516
4584
|
end
|
4517
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
|
+
|
4518
4599
|
class GoogleCloudContactcenterinsightsV1alpha1RedactionConfig
|
4519
4600
|
# @private
|
4520
4601
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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:
|