google-cloud-contact_center_insights-v1 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/paths.rb +119 -31
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/service_stub.rb +15 -0
- data/lib/google/cloud/contact_center_insights/v1/version.rb +1 -1
- data/lib/google/cloud/contactcenterinsights/v1/contact_center_insights_pb.rb +1 -1
- data/lib/google/cloud/contactcenterinsights/v1/resources_pb.rb +1 -1
- data/proto_docs/google/cloud/contactcenterinsights/v1/resources.rb +3 -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: 38e3c3cf0f4040b519c8435505b9a42b081da7ece95f7abfcb05f0254bc23591
|
4
|
+
data.tar.gz: e2f3b4623b4d1f9e38ca46e1bf9295546b48c70df7c074ad5b5e2196d5840405
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f2ebda1fabf5d5d8e4515ba237f46e990ffc3548d59c4c5755b7e581fe19b3baa8396e4a448d9bbe40dac7aa29e0653987781f62195442824e3dd923c57b2ad
|
7
|
+
data.tar.gz: e9ee88a642b57a34acca61d01552aed6d644bced39c631cd7d22681df6dbd719d464a9afd58e004e47f0b2a6b41b4ecbdebe5d8a7963f03956badbed3827bd1a
|
@@ -27,22 +27,52 @@ module Google
|
|
27
27
|
##
|
28
28
|
# Create a fully-qualified Analysis resource string.
|
29
29
|
#
|
30
|
-
#
|
30
|
+
# @overload analysis_path(project:, location:, conversation:, analysis:)
|
31
|
+
# The resource will be in the following format:
|
31
32
|
#
|
32
|
-
#
|
33
|
+
# `projects/{project}/locations/{location}/conversations/{conversation}/analyses/{analysis}`
|
33
34
|
#
|
34
|
-
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
35
|
+
# @param project [String]
|
36
|
+
# @param location [String]
|
37
|
+
# @param conversation [String]
|
38
|
+
# @param analysis [String]
|
39
|
+
#
|
40
|
+
# @overload analysis_path(project:, location:, authorized_view_set:, authorized_view:, conversation:, analysis:)
|
41
|
+
# The resource will be in the following format:
|
42
|
+
#
|
43
|
+
# `projects/{project}/locations/{location}/authorizedViewSets/{authorized_view_set}/authorizedViews/{authorized_view}/conversations/{conversation}/analyses/{analysis}`
|
44
|
+
#
|
45
|
+
# @param project [String]
|
46
|
+
# @param location [String]
|
47
|
+
# @param authorized_view_set [String]
|
48
|
+
# @param authorized_view [String]
|
49
|
+
# @param conversation [String]
|
50
|
+
# @param analysis [String]
|
38
51
|
#
|
39
52
|
# @return [::String]
|
40
|
-
def analysis_path
|
41
|
-
|
42
|
-
|
43
|
-
|
53
|
+
def analysis_path **args
|
54
|
+
resources = {
|
55
|
+
"analysis:conversation:location:project" => (proc do |project:, location:, conversation:, analysis:|
|
56
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
57
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
58
|
+
raise ::ArgumentError, "conversation cannot contain /" if conversation.to_s.include? "/"
|
59
|
+
|
60
|
+
"projects/#{project}/locations/#{location}/conversations/#{conversation}/analyses/#{analysis}"
|
61
|
+
end),
|
62
|
+
"analysis:authorized_view:authorized_view_set:conversation:location:project" => (proc do |project:, location:, authorized_view_set:, authorized_view:, conversation:, analysis:|
|
63
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
64
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
65
|
+
raise ::ArgumentError, "authorized_view_set cannot contain /" if authorized_view_set.to_s.include? "/"
|
66
|
+
raise ::ArgumentError, "authorized_view cannot contain /" if authorized_view.to_s.include? "/"
|
67
|
+
raise ::ArgumentError, "conversation cannot contain /" if conversation.to_s.include? "/"
|
68
|
+
|
69
|
+
"projects/#{project}/locations/#{location}/authorizedViewSets/#{authorized_view_set}/authorizedViews/#{authorized_view}/conversations/#{conversation}/analyses/#{analysis}"
|
70
|
+
end)
|
71
|
+
}
|
44
72
|
|
45
|
-
"
|
73
|
+
resource = resources[args.keys.sort.join(":")]
|
74
|
+
raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil?
|
75
|
+
resource.call(**args)
|
46
76
|
end
|
47
77
|
|
48
78
|
##
|
@@ -67,20 +97,48 @@ module Google
|
|
67
97
|
##
|
68
98
|
# Create a fully-qualified Conversation resource string.
|
69
99
|
#
|
70
|
-
#
|
100
|
+
# @overload conversation_path(project:, location:, conversation:)
|
101
|
+
# The resource will be in the following format:
|
71
102
|
#
|
72
|
-
#
|
103
|
+
# `projects/{project}/locations/{location}/conversations/{conversation}`
|
73
104
|
#
|
74
|
-
#
|
75
|
-
#
|
76
|
-
#
|
105
|
+
# @param project [String]
|
106
|
+
# @param location [String]
|
107
|
+
# @param conversation [String]
|
108
|
+
#
|
109
|
+
# @overload conversation_path(project:, location:, authorized_view_set:, authorized_view:, conversation:)
|
110
|
+
# The resource will be in the following format:
|
111
|
+
#
|
112
|
+
# `projects/{project}/locations/{location}/authorizedViewSets/{authorized_view_set}/authorizedViews/{authorized_view}/conversations/{conversation}`
|
113
|
+
#
|
114
|
+
# @param project [String]
|
115
|
+
# @param location [String]
|
116
|
+
# @param authorized_view_set [String]
|
117
|
+
# @param authorized_view [String]
|
118
|
+
# @param conversation [String]
|
77
119
|
#
|
78
120
|
# @return [::String]
|
79
|
-
def conversation_path
|
80
|
-
|
81
|
-
|
121
|
+
def conversation_path **args
|
122
|
+
resources = {
|
123
|
+
"conversation:location:project" => (proc do |project:, location:, conversation:|
|
124
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
125
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
126
|
+
|
127
|
+
"projects/#{project}/locations/#{location}/conversations/#{conversation}"
|
128
|
+
end),
|
129
|
+
"authorized_view:authorized_view_set:conversation:location:project" => (proc do |project:, location:, authorized_view_set:, authorized_view:, conversation:|
|
130
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
131
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
132
|
+
raise ::ArgumentError, "authorized_view_set cannot contain /" if authorized_view_set.to_s.include? "/"
|
133
|
+
raise ::ArgumentError, "authorized_view cannot contain /" if authorized_view.to_s.include? "/"
|
134
|
+
|
135
|
+
"projects/#{project}/locations/#{location}/authorizedViewSets/#{authorized_view_set}/authorizedViews/#{authorized_view}/conversations/#{conversation}"
|
136
|
+
end)
|
137
|
+
}
|
82
138
|
|
83
|
-
"
|
139
|
+
resource = resources[args.keys.sort.join(":")]
|
140
|
+
raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil?
|
141
|
+
resource.call(**args)
|
84
142
|
end
|
85
143
|
|
86
144
|
##
|
@@ -122,22 +180,52 @@ module Google
|
|
122
180
|
##
|
123
181
|
# Create a fully-qualified FeedbackLabel resource string.
|
124
182
|
#
|
125
|
-
#
|
183
|
+
# @overload feedback_label_path(project:, location:, conversation:, feedback_label:)
|
184
|
+
# The resource will be in the following format:
|
126
185
|
#
|
127
|
-
#
|
186
|
+
# `projects/{project}/locations/{location}/conversations/{conversation}/feedbackLabels/{feedback_label}`
|
128
187
|
#
|
129
|
-
#
|
130
|
-
#
|
131
|
-
#
|
132
|
-
#
|
188
|
+
# @param project [String]
|
189
|
+
# @param location [String]
|
190
|
+
# @param conversation [String]
|
191
|
+
# @param feedback_label [String]
|
192
|
+
#
|
193
|
+
# @overload feedback_label_path(project:, location:, authorized_view_set:, authorized_view:, conversation:, feedback_label:)
|
194
|
+
# The resource will be in the following format:
|
195
|
+
#
|
196
|
+
# `projects/{project}/locations/{location}/authorizedViewSets/{authorized_view_set}/authorizedViews/{authorized_view}/conversations/{conversation}/feedbackLabels/{feedback_label}`
|
197
|
+
#
|
198
|
+
# @param project [String]
|
199
|
+
# @param location [String]
|
200
|
+
# @param authorized_view_set [String]
|
201
|
+
# @param authorized_view [String]
|
202
|
+
# @param conversation [String]
|
203
|
+
# @param feedback_label [String]
|
133
204
|
#
|
134
205
|
# @return [::String]
|
135
|
-
def feedback_label_path
|
136
|
-
|
137
|
-
|
138
|
-
|
206
|
+
def feedback_label_path **args
|
207
|
+
resources = {
|
208
|
+
"conversation:feedback_label:location:project" => (proc do |project:, location:, conversation:, feedback_label:|
|
209
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
210
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
211
|
+
raise ::ArgumentError, "conversation cannot contain /" if conversation.to_s.include? "/"
|
139
212
|
|
140
|
-
|
213
|
+
"projects/#{project}/locations/#{location}/conversations/#{conversation}/feedbackLabels/#{feedback_label}"
|
214
|
+
end),
|
215
|
+
"authorized_view:authorized_view_set:conversation:feedback_label:location:project" => (proc do |project:, location:, authorized_view_set:, authorized_view:, conversation:, feedback_label:|
|
216
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
217
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
218
|
+
raise ::ArgumentError, "authorized_view_set cannot contain /" if authorized_view_set.to_s.include? "/"
|
219
|
+
raise ::ArgumentError, "authorized_view cannot contain /" if authorized_view.to_s.include? "/"
|
220
|
+
raise ::ArgumentError, "conversation cannot contain /" if conversation.to_s.include? "/"
|
221
|
+
|
222
|
+
"projects/#{project}/locations/#{location}/authorizedViewSets/#{authorized_view_set}/authorizedViews/#{authorized_view}/conversations/#{conversation}/feedbackLabels/#{feedback_label}"
|
223
|
+
end)
|
224
|
+
}
|
225
|
+
|
226
|
+
resource = resources[args.keys.sort.join(":")]
|
227
|
+
raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil?
|
228
|
+
resource.call(**args)
|
141
229
|
end
|
142
230
|
|
143
231
|
##
|
data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/service_stub.rb
CHANGED
@@ -3761,6 +3761,13 @@ module Google
|
|
3761
3761
|
["location", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
3762
3762
|
]
|
3763
3763
|
)
|
3764
|
+
.with_bindings(
|
3765
|
+
uri_method: :get,
|
3766
|
+
uri_template: "/v1/{location}:calculateStats",
|
3767
|
+
matches: [
|
3768
|
+
["location", %r{^projects/[^/]+/locations/[^/]+/authorizedViewSet/[^/]+/authorizedView/[^/]+/?$}, false]
|
3769
|
+
]
|
3770
|
+
)
|
3764
3771
|
transcoder.transcode request_pb
|
3765
3772
|
end
|
3766
3773
|
|
@@ -4083,6 +4090,14 @@ module Google
|
|
4083
4090
|
["location", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
4084
4091
|
]
|
4085
4092
|
)
|
4093
|
+
.with_bindings(
|
4094
|
+
uri_method: :post,
|
4095
|
+
uri_template: "/v1/{location}:queryMetrics",
|
4096
|
+
body: "*",
|
4097
|
+
matches: [
|
4098
|
+
["location", %r{^projects/[^/]+/locations/[^/]+/authorizedViewSet/[^/]+/authorizedView/[^/]+/?$}, false]
|
4099
|
+
]
|
4100
|
+
)
|
4086
4101
|
transcoder.transcode request_pb
|
4087
4102
|
end
|
4088
4103
|
|
@@ -18,7 +18,7 @@ require 'google/rpc/status_pb'
|
|
18
18
|
require 'google/type/interval_pb'
|
19
19
|
|
20
20
|
|
21
|
-
descriptor_data = "\nCgoogle/cloud/contactcenterinsights/v1/contact_center_insights.proto\x12%google.cloud.contactcenterinsights.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x35google/cloud/contactcenterinsights/v1/resources.proto\x1a#google/longrunning/operations.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\x1a\x1agoogle/type/interval.proto\"d\n\x15\x43\x61lculateStatsRequest\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\"\x8f\n\n\x16\x43\x61lculateStatsResponse\x12\x33\n\x10\x61verage_duration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x1a\n\x12\x61verage_turn_count\x18\x02 \x01(\x05\x12\x1a\n\x12\x63onversation_count\x18\x03 \x01(\x05\x12}\n\x19smart_highlighter_matches\x18\x04 \x03(\x0b\x32Z.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.SmartHighlighterMatchesEntry\x12\x7f\n\x1a\x63ustom_highlighter_matches\x18\x05 \x03(\x0b\x32[.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.CustomHighlighterMatchesEntry\x12j\n\rissue_matches\x18\x06 \x03(\x0b\x32O.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.IssueMatchesEntryB\x02\x18\x01\x12q\n\x13issue_matches_stats\x18\x08 \x03(\x0b\x32T.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.IssueMatchesStatsEntry\x12p\n\x1e\x63onversation_count_time_series\x18\x07 \x01(\x0b\x32H.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries\x1a\xfd\x01\n\nTimeSeries\x12\x34\n\x11interval_duration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x61\n\x06points\x18\x02 \x03(\x0b\x32Q.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries.Interval\x1aV\n\x08Interval\x12.\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1a\n\x12\x63onversation_count\x18\x02 \x01(\x05\x1a>\n\x1cSmartHighlighterMatchesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a?\n\x1d\x43ustomHighlighterMatchesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a\x33\n\x11IssueMatchesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a\x80\x01\n\x16IssueMatchesStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12U\n\x05value\x18\x02 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats:\x02\x38\x01\"\xb6\x02\n\x1f\x43reateAnalysisOperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x0c\x63onversation\x18\x03 \x01(\tB9\xe0\x41\x03\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12Y\n\x12\x61nnotator_selector\x18\x04 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelectorB\x03\xe0\x41\x03\"\xbf\x01\n\x19\x43reateConversationRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12N\n\x0c\x63onversation\x18\x02 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.ConversationB\x03\xe0\x41\x02\x12\x17\n\x0f\x63onversation_id\x18\x03 \x01(\t\"\xec\x02\n\x19UploadConversationRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12N\n\x0c\x63onversation\x18\x02 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.ConversationB\x03\xe0\x41\x02\x12\x1c\n\x0f\x63onversation_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12U\n\x10redaction_config\x18\x04 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.RedactionConfigB\x03\xe0\x41\x01\x12O\n\rspeech_config\x18\x0b \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.SpeechConfigB\x03\xe0\x41\x01\"\xdd\x02\n\x1aUploadConversationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12V\n\x07request\x18\x03 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.UploadConversationRequestB\x03\xe0\x41\x03\x12\x1f\n\x12\x61nalysis_operation\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12]\n\x18\x61pplied_redaction_config\x18\x05 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.RedactionConfigB\x03\xe0\x41\x03\"\xea\x01\n\x18ListConversationsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x15\n\x08order_by\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12\x45\n\x04view\x18\x05 \x01(\x0e\x32\x37.google.cloud.contactcenterinsights.v1.ConversationView\"\x80\x01\n\x19ListConversationsResponse\x12J\n\rconversations\x18\x01 \x03(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.Conversation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xa8\x01\n\x16GetConversationRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x45\n\x04view\x18\x02 \x01(\x0e\x32\x37.google.cloud.contactcenterinsights.v1.ConversationView\"\x9c\x01\n\x19UpdateConversationRequest\x12N\n\x0c\x63onversation\x18\x01 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.ConversationB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"s\n\x19\x44\x65leteConversationRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\r\n\x05\x66orce\x18\x02 \x01(\x08\"\xcb\t\n\x1aIngestConversationsRequest\x12\x61\n\ngcs_source\x18\x02 \x01(\x0b\x32K.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSourceH\x00\x12|\n\x18transcript_object_config\x18\x03 \x01(\x0b\x32X.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.TranscriptObjectConfigH\x01\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12q\n\x13\x63onversation_config\x18\x04 \x01(\x0b\x32T.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.ConversationConfig\x12U\n\x10redaction_config\x18\x05 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.RedactionConfigB\x03\xe0\x41\x01\x12O\n\rspeech_config\x18\x06 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.SpeechConfigB\x03\xe0\x41\x01\x12\x1d\n\x0bsample_size\x18\x07 \x01(\x05\x42\x03\xe0\x41\x01H\x02\x88\x01\x01\x1a\xd8\x02\n\tGcsSource\x12\x17\n\nbucket_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12}\n\x12\x62ucket_object_type\x18\x02 \x01(\x0e\x32\\.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSource.BucketObjectTypeB\x03\xe0\x41\x01\x12%\n\x13metadata_bucket_uri\x18\x03 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12!\n\x14\x63ustom_metadata_keys\x18\x0c \x03(\tB\x03\xe0\x41\x01\"Q\n\x10\x42ucketObjectType\x12\"\n\x1e\x42UCKET_OBJECT_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nTRANSCRIPT\x10\x01\x12\t\n\x05\x41UDIO\x10\x02\x42\x16\n\x14_metadata_bucket_uri\x1ai\n\x16TranscriptObjectConfig\x12O\n\x06medium\x18\x01 \x01(\x0e\x32:.google.cloud.contactcenterinsights.v1.Conversation.MediumB\x03\xe0\x41\x02\x1a\x66\n\x12\x43onversationConfig\x12\x15\n\x08\x61gent_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\ragent_channel\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x1d\n\x10\x63ustomer_channel\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x42\x08\n\x06sourceB\x0f\n\robject_configB\x0e\n\x0c_sample_size\"\xc8\x04\n\x1bIngestConversationsMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12W\n\x07request\x18\x03 \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.IngestConversationsRequestB\x03\xe0\x41\x03\x12/\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\x12\x84\x01\n\x1aingest_conversations_stats\x18\x05 \x01(\x0b\x32[.google.cloud.contactcenterinsights.v1.IngestConversationsMetadata.IngestConversationsStatsB\x03\xe0\x41\x03\x1a\xae\x01\n\x18IngestConversationsStats\x12#\n\x16processed_object_count\x18\x01 \x01(\x05\x42\x03\xe0\x41\x03\x12%\n\x18\x64uplicates_skipped_count\x18\x02 \x01(\x05\x42\x03\xe0\x41\x03\x12$\n\x17successful_ingest_count\x18\x03 \x01(\x05\x42\x03\xe0\x41\x03\x12 \n\x13\x66\x61iled_ingest_count\x18\x04 \x01(\x05\x42\x03\xe0\x41\x03\"\x1d\n\x1bIngestConversationsResponse\"\xaa\x01\n\x15\x43reateAnalysisRequest\x12I\n\x06parent\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x46\n\x08\x61nalysis\x18\x02 \x01(\x0b\x32/.google.cloud.contactcenterinsights.v1.AnalysisB\x03\xe0\x41\x02\"\x97\x01\n\x13ListAnalysesRequest\x12I\n\x06parent\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\"r\n\x14ListAnalysesResponse\x12\x41\n\x08\x61nalyses\x18\x01 \x03(\x0b\x32/.google.cloud.contactcenterinsights.v1.Analysis\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"Y\n\x12GetAnalysisRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-contactcenterinsights.googleapis.com/Analysis\"\\\n\x15\x44\x65leteAnalysisRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-contactcenterinsights.googleapis.com/Analysis\"\xe9\x01\n\x1f\x42ulkAnalyzeConversationsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12 \n\x13\x61nalysis_percentage\x18\x03 \x01(\x02\x42\x03\xe0\x41\x02\x12T\n\x12\x61nnotator_selector\x18\x08 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelector\"\xf4\x02\n BulkAnalyzeConversationsMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12W\n\x07request\x18\x03 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest\x12 \n\x18\x63ompleted_analyses_count\x18\x04 \x01(\x05\x12\x1d\n\x15\x66\x61iled_analyses_count\x18\x05 \x01(\x05\x12&\n\x1etotal_requested_analyses_count\x18\x06 \x01(\x05\x12/\n\x0epartial_errors\x18\x07 \x03(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\"d\n BulkAnalyzeConversationsResponse\x12!\n\x19successful_analysis_count\x18\x01 \x01(\x05\x12\x1d\n\x15\x66\x61iled_analysis_count\x18\x02 \x01(\x05\"\x94\x01\n\x1e\x42ulkDeleteConversationsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\x12\x18\n\x10max_delete_count\x18\x03 \x01(\x05\x12\r\n\x05\x66orce\x18\x04 \x01(\x08\"\x84\x02\n\x1f\x42ulkDeleteConversationsMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12V\n\x07request\x18\x03 \x01(\x0b\x32\x45.google.cloud.contactcenterinsights.v1.BulkDeleteConversationsRequest\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"!\n\x1f\x42ulkDeleteConversationsResponse\"\x98\x04\n\x19\x45xportInsightsDataRequest\x12u\n\x15\x62ig_query_destination\x18\x02 \x01(\x0b\x32T.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.BigQueryDestinationH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x0e\n\x06\x66ilter\x18\x03 \x01(\t\x12\x0f\n\x07kms_key\x18\x04 \x01(\t\x12l\n\x11write_disposition\x18\x05 \x01(\x0e\x32Q.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.WriteDisposition\x1aN\n\x13\x42igQueryDestination\x12\x12\n\nproject_id\x18\x03 \x01(\t\x12\x14\n\x07\x64\x61taset\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\r\n\x05table\x18\x02 \x01(\t\"[\n\x10WriteDisposition\x12!\n\x1dWRITE_DISPOSITION_UNSPECIFIED\x10\x00\x12\x12\n\x0eWRITE_TRUNCATE\x10\x01\x12\x10\n\x0cWRITE_APPEND\x10\x02\x42\r\n\x0b\x64\x65stination\"\x84\x02\n\x1a\x45xportInsightsDataMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Q\n\x07request\x18\x03 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"\x1c\n\x1a\x45xportInsightsDataResponse\"\xa1\x01\n\x17\x43reateIssueModelRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12K\n\x0bissue_model\x18\x02 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModelB\x03\xe0\x41\x02\"\xd4\x01\n\x18\x43reateIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest\"\x97\x01\n\x17UpdateIssueModelRequest\x12K\n\x0bissue_model\x18\x01 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModelB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"S\n\x16ListIssueModelsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\"b\n\x17ListIssueModelsResponse\x12G\n\x0cissue_models\x18\x01 \x03(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModel\"]\n\x14GetIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"`\n\x17\x44\x65leteIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\xd4\x01\n\x18\x44\x65leteIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest\"`\n\x17\x44\x65ployIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\x1a\n\x18\x44\x65ployIssueModelResponse\"\xd4\x01\n\x18\x44\x65ployIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest\"b\n\x19UndeployIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\x1c\n\x1aUndeployIssueModelResponse\"\xd8\x01\n\x1aUndeployIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Q\n\x07request\x18\x03 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest\"\x84\x02\n\x17\x45xportIssueModelRequest\x12h\n\x0fgcs_destination\x18\x02 \x01(\x0b\x32M.google.cloud.contactcenterinsights.v1.ExportIssueModelRequest.GcsDestinationH\x00\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\x1a)\n\x0eGcsDestination\x12\x17\n\nobject_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x42\r\n\x0b\x44\x65stination\"\x1a\n\x18\x45xportIssueModelResponse\"\xca\x01\n\x18\x45xportIssueModelMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.ExportIssueModelRequest\"\x83\x02\n\x17ImportIssueModelRequest\x12^\n\ngcs_source\x18\x02 \x01(\x0b\x32H.google.cloud.contactcenterinsights.v1.ImportIssueModelRequest.GcsSourceH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x1d\n\x10\x63reate_new_model\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x1a$\n\tGcsSource\x12\x17\n\nobject_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x42\x08\n\x06Source\"\x1a\n\x18ImportIssueModelResponse\"\xca\x01\n\x18ImportIssueModelMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.ImportIssueModelRequest\"S\n\x0fGetIssueRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*contactcenterinsights.googleapis.com/Issue\"\\\n\x11ListIssuesRequest\x12G\n\x06parent\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"R\n\x12ListIssuesResponse\x12<\n\x06issues\x18\x01 \x03(\x0b\x32,.google.cloud.contactcenterinsights.v1.Issue\"\x87\x01\n\x12UpdateIssueRequest\x12@\n\x05issue\x18\x01 \x01(\x0b\x32,.google.cloud.contactcenterinsights.v1.IssueB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"V\n\x12\x44\x65leteIssueRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*contactcenterinsights.googleapis.com/Issue\"o\n\x1f\x43\x61lculateIssueModelStatsRequest\x12L\n\x0bissue_model\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"v\n CalculateIssueModelStatsResponse\x12R\n\rcurrent_stats\x18\x04 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.IssueModelLabelStats\"\xaa\x01\n\x1a\x43reatePhraseMatcherRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12Q\n\x0ephrase_matcher\x18\x02 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.PhraseMatcherB\x03\xe0\x41\x02\"\x8d\x01\n\x19ListPhraseMatchersRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\"\x84\x01\n\x1aListPhraseMatchersResponse\x12M\n\x0fphrase_matchers\x18\x01 \x03(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"c\n\x17GetPhraseMatcherRequest\x12H\n\x04name\x18\x01 \x01(\tB:\xe0\x41\x02\xfa\x41\x34\n2contactcenterinsights.googleapis.com/PhraseMatcher\"f\n\x1a\x44\x65letePhraseMatcherRequest\x12H\n\x04name\x18\x01 \x01(\tB:\xe0\x41\x02\xfa\x41\x34\n2contactcenterinsights.googleapis.com/PhraseMatcher\"\xa0\x01\n\x1aUpdatePhraseMatcherRequest\x12Q\n\x0ephrase_matcher\x18\x01 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.PhraseMatcherB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"Y\n\x12GetSettingsRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-contactcenterinsights.googleapis.com/Settings\"\x95\x01\n\x15UpdateSettingsRequest\x12\x46\n\x08settings\x18\x01 \x01(\x0b\x32/.google.cloud.contactcenterinsights.v1.SettingsB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"\xa7\x01\n\x19\x43reateAnalysisRuleRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12O\n\ranalysis_rule\x18\x02 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.AnalysisRuleB\x03\xe0\x41\x02\"a\n\x16GetAnalysisRuleRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/AnalysisRule\"\xa2\x01\n\x19UpdateAnalysisRuleRequest\x12O\n\ranalysis_rule\x18\x01 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.AnalysisRuleB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\"d\n\x19\x44\x65leteAnalysisRuleRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/AnalysisRule\"\x86\x01\n\x18ListAnalysisRulesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x81\x01\n\x19ListAnalysisRulesResponse\x12K\n\x0e\x61nalysis_rules\x18\x01 \x03(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.AnalysisRule\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"e\n\x18GetEncryptionSpecRequest\x12I\n\x04name\x18\x01 \x01(\tB;\xe0\x41\x02\xfa\x41\x35\n3contactcenterinsights.googleapis.com/EncryptionSpec\"v\n\x1fInitializeEncryptionSpecRequest\x12S\n\x0f\x65ncryption_spec\x18\x01 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.EncryptionSpecB\x03\xe0\x41\x02\"\"\n InitializeEncryptionSpecResponse\"\x95\x02\n InitializeEncryptionSpecMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\\\n\x07request\x18\x03 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.InitializeEncryptionSpecRequestB\x03\xe0\x41\x03\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"\x8e\x01\n\x11\x43reateViewRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12>\n\x04view\x18\x02 \x01(\x0b\x32+.google.cloud.contactcenterinsights.v1.ViewB\x03\xe0\x41\x02\"Q\n\x0eGetViewRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)contactcenterinsights.googleapis.com/View\"t\n\x10ListViewsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"h\n\x11ListViewsResponse\x12:\n\x05views\x18\x01 \x03(\x0b\x32+.google.cloud.contactcenterinsights.v1.View\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x84\x01\n\x11UpdateViewRequest\x12>\n\x04view\x18\x01 \x01(\x0b\x32+.google.cloud.contactcenterinsights.v1.ViewB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"T\n\x11\x44\x65leteViewRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)contactcenterinsights.googleapis.com/View\"\xc9\n\n\tDimension\x12p\n\x18issue_dimension_metadata\x18\x02 \x01(\x0b\x32G.google.cloud.contactcenterinsights.v1.Dimension.IssueDimensionMetadataB\x03\xe0\x41\x03H\x00\x12p\n\x18\x61gent_dimension_metadata\x18\x03 \x01(\x0b\x32G.google.cloud.contactcenterinsights.v1.Dimension.AgentDimensionMetadataB\x03\xe0\x41\x03H\x00\x12{\n\x1eqa_question_dimension_metadata\x18\x04 \x01(\x0b\x32L.google.cloud.contactcenterinsights.v1.Dimension.QaQuestionDimensionMetadataB\x03\xe0\x41\x03H\x00\x12\x88\x01\n%qa_question_answer_dimension_metadata\x18\x05 \x01(\x0b\x32R.google.cloud.contactcenterinsights.v1.Dimension.QaQuestionAnswerDimensionMetadataB\x03\xe0\x41\x03H\x00\x12T\n\rdimension_key\x18\x01 \x01(\x0e\x32=.google.cloud.contactcenterinsights.v1.Dimension.DimensionKey\x1a\xc5\x01\n\x16IssueDimensionMetadata\x12\x41\n\x08issue_id\x18\x01 \x01(\tB/\xfa\x41,\n*contactcenterinsights.googleapis.com/Issue\x12\x1a\n\x12issue_display_name\x18\x02 \x01(\t\x12L\n\x0eissue_model_id\x18\x03 \x01(\tB4\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\x1ai\n\x16\x41gentDimensionMetadata\x12\x15\n\x08\x61gent_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1f\n\x12\x61gent_display_name\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x17\n\nagent_team\x18\x03 \x01(\tB\x03\xe0\x41\x01\x1at\n\x1bQaQuestionDimensionMetadata\x12\x1c\n\x0fqa_scorecard_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1b\n\x0eqa_question_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rquestion_body\x18\x03 \x01(\tB\x03\xe0\x41\x01\x1a\x95\x01\n!QaQuestionAnswerDimensionMetadata\x12\x1c\n\x0fqa_scorecard_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1b\n\x0eqa_question_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rquestion_body\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0c\x61nswer_value\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xa2\x01\n\x0c\x44imensionKey\x12\x1d\n\x19\x44IMENSION_KEY_UNSPECIFIED\x10\x00\x12\t\n\x05ISSUE\x10\x01\x12\t\n\x05\x41GENT\x10\x02\x12\x0e\n\nAGENT_TEAM\x10\x03\x12\x12\n\x0eQA_QUESTION_ID\x10\x04\x12\x1c\n\x18QA_QUESTION_ANSWER_VALUE\x10\x05\x12\x1b\n\x17\x43ONVERSATION_PROFILE_ID\x10\x06\x42\x14\n\x12\x64imension_metadata\"\xcc\x03\n\x13QueryMetricsRequest\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x64\n\x10time_granularity\x18\x03 \x01(\x0e\x32J.google.cloud.contactcenterinsights.v1.QueryMetricsRequest.TimeGranularity\x12\x44\n\ndimensions\x18\x04 \x03(\x0b\x32\x30.google.cloud.contactcenterinsights.v1.Dimension\x12\x30\n\x0cmeasure_mask\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"\x84\x01\n\x0fTimeGranularity\x12 \n\x1cTIME_GRANULARITY_UNSPECIFIED\x10\x00\x12\x08\n\x04NONE\x10\x01\x12\t\n\x05\x44\x41ILY\x10\x02\x12\n\n\x06HOURLY\x10\x03\x12\x0e\n\nPER_MINUTE\x10\x04\x12\x11\n\rPER_5_MINUTES\x10\x05\x12\x0b\n\x07MONTHLY\x10\x06\"\x9a\x0e\n\x14QueryMetricsResponse\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12/\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12Q\n\x06slices\x18\x02 \x03(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice\x12\x63\n\x13macro_average_slice\x18\x04 \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.SliceH\x00\x88\x01\x01\x1a\xc3\x0b\n\x05Slice\x12\x44\n\ndimensions\x18\x01 \x03(\x0b\x32\x30.google.cloud.contactcenterinsights.v1.Dimension\x12Z\n\x05total\x18\x02 \x01(\x0b\x32K.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice.DataPoint\x12\x61\n\x0btime_series\x18\x03 \x01(\x0b\x32L.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice.TimeSeries\x1a\xc4\x08\n\tDataPoint\x12\x7f\n\x14\x63onversation_measure\x18\x02 \x01(\x0b\x32_.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice.DataPoint.ConversationMeasureH\x00\x12\'\n\x08interval\x18\x01 \x01(\x0b\x32\x15.google.type.Interval\x1a\x81\x07\n\x13\x43onversationMeasure\x12\x1f\n\x12\x63onversation_count\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\'\n\x1a\x61verage_silence_percentage\x18\x02 \x01(\x02H\x01\x88\x01\x01\x12\x38\n\x10\x61verage_duration\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationH\x02\x88\x01\x01\x12\x1f\n\x12\x61verage_turn_count\x18\x04 \x01(\x02H\x03\x88\x01\x01\x12*\n\x1d\x61verage_agent_sentiment_score\x18\x05 \x01(\x02H\x04\x88\x01\x01\x12+\n\x1e\x61verage_client_sentiment_score\x18\x06 \x01(\x02H\x05\x88\x01\x01\x12\x31\n$average_customer_satisfaction_rating\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12(\n\x1b\x61verage_qa_normalized_score\x18\x07 \x01(\x01H\x07\x88\x01\x01\x12\x81\x01\n\rqa_tag_scores\x18\t \x03(\x0b\x32j.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice.DataPoint.ConversationMeasure.QaTagScore\x12\x31\n$average_qa_question_normalized_score\x18\n \x01(\x01H\x08\x88\x01\x01\x1a?\n\nQaTagScore\x12\x0b\n\x03tag\x18\x01 \x01(\t\x12$\n\x1c\x61verage_tag_normalized_score\x18\x02 \x01(\x01\x42\x15\n\x13_conversation_countB\x1d\n\x1b_average_silence_percentageB\x13\n\x11_average_durationB\x15\n\x13_average_turn_countB \n\x1e_average_agent_sentiment_scoreB!\n\x1f_average_client_sentiment_scoreB\'\n%_average_customer_satisfaction_ratingB\x1e\n\x1c_average_qa_normalized_scoreB\'\n%_average_qa_question_normalized_scoreB\t\n\x07measure\x1an\n\nTimeSeries\x12`\n\x0b\x64\x61ta_points\x18\x04 \x03(\x0b\x32K.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice.DataPointB\x16\n\x14_macro_average_slice\"\x16\n\x14QueryMetricsMetadata\"\xd5\x01\n\x17\x43reateQaQuestionRequest\x12P\n\x06parent\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12K\n\x0bqa_question\x18\x02 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.QaQuestionB\x03\xe0\x41\x02\x12\x1b\n\x0eqa_question_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"]\n\x14GetQaQuestionRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/QaQuestion\"\x9b\x01\n\x16ListQaQuestionsRequest\x12P\n\x06parent\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"{\n\x17ListQaQuestionsResponse\x12G\n\x0cqa_questions\x18\x01 \x03(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.QaQuestion\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x9c\x01\n\x17UpdateQaQuestionRequest\x12K\n\x0bqa_question\x18\x01 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.QaQuestionB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"`\n\x17\x44\x65leteQaQuestionRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/QaQuestion\"\xc2\x01\n\x18\x43reateQaScorecardRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12M\n\x0cqa_scorecard\x18\x02 \x01(\x0b\x32\x32.google.cloud.contactcenterinsights.v1.QaScorecardB\x03\xe0\x41\x02\x12\x1c\n\x0fqa_scorecard_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"_\n\x15GetQaScorecardRequest\x12\x46\n\x04name\x18\x01 \x01(\tB8\xe0\x41\x02\xfa\x41\x32\n0contactcenterinsights.googleapis.com/QaScorecard\"\x9f\x01\n\x18UpdateQaScorecardRequest\x12M\n\x0cqa_scorecard\x18\x01 \x01(\x0b\x32\x32.google.cloud.contactcenterinsights.v1.QaScorecardB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"v\n\x18\x44\x65leteQaScorecardRequest\x12\x46\n\x04name\x18\x01 \x01(\tB8\xe0\x41\x02\xfa\x41\x32\n0contactcenterinsights.googleapis.com/QaScorecard\x12\x12\n\x05\x66orce\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\xf3\x01\n CreateQaScorecardRevisionRequest\x12H\n\x06parent\x18\x01 \x01(\tB8\xe0\x41\x02\xfa\x41\x32\n0contactcenterinsights.googleapis.com/QaScorecard\x12^\n\x15qa_scorecard_revision\x18\x02 \x01(\x0b\x32:.google.cloud.contactcenterinsights.v1.QaScorecardRevisionB\x03\xe0\x41\x02\x12%\n\x18qa_scorecard_revision_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"o\n\x1dGetQaScorecardRevisionRequest\x12N\n\x04name\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\"\xa3\x01\n\x1eTuneQaScorecardRevisionRequest\x12P\n\x06parent\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rvalidate_only\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"!\n\x1fTuneQaScorecardRevisionResponse\"\xd3\x08\n\x1fTuneQaScorecardRevisionMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12[\n\x07request\x18\x03 \x01(\x0b\x32\x45.google.cloud.contactcenterinsights.v1.TuneQaScorecardRevisionRequestB\x03\xe0\x41\x03\x12\x9d\x01\n&qa_question_dataset_validation_results\x18\x04 \x03(\x0b\x32h.google.cloud.contactcenterinsights.v1.TuneQaScorecardRevisionMetadata.QaQuestionDatasetValidationResultB\x03\xe0\x41\x03\x12\x96\x01\n\"qa_question_dataset_tuning_metrics\x18\x05 \x03(\x0b\x32\x65.google.cloud.contactcenterinsights.v1.TuneQaScorecardRevisionMetadata.QaQuestionDatasetTuningMetricsB\x03\xe0\x41\x03\x12$\n\x17tuning_completion_ratio\x18\x06 \x01(\x01\x42\x03\xe0\x41\x03\x1a\xf9\x01\n!QaQuestionDatasetValidationResult\x12I\n\x08question\x18\x01 \x01(\tB7\xe0\x41\x03\xfa\x41\x31\n/contactcenterinsights.googleapis.com/QaQuestion\x12\x64\n\x1b\x64\x61taset_validation_warnings\x18\x02 \x03(\x0e\x32?.google.cloud.contactcenterinsights.v1.DatasetValidationWarning\x12#\n\x1bvalid_feedback_labels_count\x18\x03 \x01(\x05\x1a\x8e\x02\n\x1eQaQuestionDatasetTuningMetrics\x12I\n\x08question\x18\x01 \x01(\tB7\xe0\x41\x03\xfa\x41\x31\n/contactcenterinsights.googleapis.com/QaQuestion\x12\x83\x01\n\x07metrics\x18\x02 \x01(\x0b\x32m.google.cloud.contactcenterinsights.v1.TuneQaScorecardRevisionMetadata.QaQuestionDatasetTuningMetrics.MetricsB\x03\xe0\x41\x03\x1a\x1b\n\x07Metrics\x12\x10\n\x08\x61\x63\x63uracy\x18\x01 \x01(\x01\"r\n DeployQaScorecardRevisionRequest\x12N\n\x04name\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\"t\n\"UndeployQaScorecardRevisionRequest\x12N\n\x04name\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\"\x86\x01\n DeleteQaScorecardRevisionRequest\x12N\n\x04name\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12\x12\n\x05\x66orce\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\x85\x01\n\x17ListQaScorecardsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"~\n\x18ListQaScorecardsResponse\x12I\n\rqa_scorecards\x18\x01 \x03(\x0b\x32\x32.google.cloud.contactcenterinsights.v1.QaScorecard\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb1\x01\n\x1fListQaScorecardRevisionsRequest\x12H\n\x06parent\x18\x01 \x01(\tB8\xe0\x41\x02\xfa\x41\x32\n0contactcenterinsights.googleapis.com/QaScorecard\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x97\x01\n ListQaScorecardRevisionsResponse\x12Z\n\x16qa_scorecard_revisions\x18\x01 \x03(\x0b\x32:.google.cloud.contactcenterinsights.v1.QaScorecardRevision\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xda\x01\n\x1a\x43reateFeedbackLabelRequest\x12I\n\x06parent\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x1e\n\x11\x66\x65\x65\x64\x62\x61\x63k_label_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12Q\n\x0e\x66\x65\x65\x64\x62\x61\x63k_label\x18\x03 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.FeedbackLabelB\x03\xe0\x41\x02\"\xac\x01\n\x19ListFeedbackLabelsRequest\x12I\n\x06parent\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tpage_size\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x84\x01\n\x1aListFeedbackLabelsResponse\x12M\n\x0f\x66\x65\x65\x64\x62\x61\x63k_labels\x18\x01 \x03(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.FeedbackLabel\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"c\n\x17GetFeedbackLabelRequest\x12H\n\x04name\x18\x01 \x01(\tB:\xe0\x41\x02\xfa\x41\x34\n2contactcenterinsights.googleapis.com/FeedbackLabel\"\xa5\x01\n\x1aUpdateFeedbackLabelRequest\x12Q\n\x0e\x66\x65\x65\x64\x62\x61\x63k_label\x18\x01 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.FeedbackLabelB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"f\n\x1a\x44\x65leteFeedbackLabelRequest\x12H\n\x04name\x18\x01 \x01(\tB:\xe0\x41\x02\xfa\x41\x34\n2contactcenterinsights.googleapis.com/FeedbackLabel\"\x9f\x01\n\x1cListAllFeedbackLabelsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x87\x01\n\x1dListAllFeedbackLabelsResponse\x12M\n\x0f\x66\x65\x65\x64\x62\x61\x63k_labels\x18\x01 \x03(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.FeedbackLabel\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb4\x03\n\x1f\x42ulkUploadFeedbackLabelsRequest\x12\x66\n\ngcs_source\x18\x02 \x01(\x0b\x32P.google.cloud.contactcenterinsights.v1.BulkUploadFeedbackLabelsRequest.GcsSourceH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x1a\n\rvalidate_only\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x1a\xc7\x01\n\tGcsSource\x12l\n\x06\x66ormat\x18\x01 \x01(\x0e\x32W.google.cloud.contactcenterinsights.v1.BulkUploadFeedbackLabelsRequest.GcsSource.FormatB\x03\xe0\x41\x02\x12\x17\n\nobject_uri\x18\x02 \x01(\tB\x03\xe0\x41\x02\"3\n\x06\x46ormat\x12\x16\n\x12\x46ORMAT_UNSPECIFIED\x10\x00\x12\x07\n\x03\x43SV\x10\x01\x12\x08\n\x04JSON\x10\x02\x42\x08\n\x06source\"\"\n BulkUploadFeedbackLabelsResponse\"\xf6\x03\n BulkUploadFeedbackLabelsMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\\\n\x07request\x18\x03 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.BulkUploadFeedbackLabelsRequestB\x03\xe0\x41\x03\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\x12n\n\x0cupload_stats\x18\x05 \x01(\x0b\x32S.google.cloud.contactcenterinsights.v1.BulkUploadFeedbackLabelsMetadata.UploadStatsB\x03\xe0\x41\x03\x1ao\n\x0bUploadStats\x12\x1e\n\x16processed_object_count\x18\x01 \x01(\x05\x12\x1f\n\x17\x66\x61iled_validation_count\x18\x02 \x01(\x05\x12\x1f\n\x17successful_upload_count\x18\x03 \x01(\x05\"\xfc\x06\n!BulkDownloadFeedbackLabelsRequest\x12r\n\x0fgcs_destination\x18\x03 \x01(\x0b\x32W.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsRequest.GcsDestinationH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1f\n\x12max_download_count\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01\x12|\n\x13\x66\x65\x65\x64\x62\x61\x63k_label_type\x18\x05 \x01(\x0e\x32Z.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsRequest.FeedbackLabelTypeB\x03\xe0\x41\x01\x12 \n\x13\x63onversation_filter\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12%\n\x18template_qa_scorecard_id\x18\x07 \x03(\tB\x03\xe0\x41\x01\x1a\xbd\x02\n\x0eGcsDestination\x12s\n\x06\x66ormat\x18\x01 \x01(\x0e\x32^.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsRequest.GcsDestination.FormatB\x03\xe0\x41\x02\x12\x17\n\nobject_uri\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1b\n\x0e\x61\x64\x64_whitespace\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12&\n\x19\x61lways_print_empty_fields\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12#\n\x16records_per_file_count\x18\x05 \x01(\x03\x42\x03\xe0\x41\x01\"3\n\x06\x46ormat\x12\x16\n\x12\x46ORMAT_UNSPECIFIED\x10\x00\x12\x07\n\x03\x43SV\x10\x01\x12\x08\n\x04JSON\x10\x02\"\\\n\x11\x46\x65\x65\x64\x62\x61\x63kLabelType\x12#\n\x1f\x46\x45\x45\x44\x42\x41\x43K_LABEL_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nQUALITY_AI\x10\x01\x12\x12\n\x0eTOPIC_MODELING\x10\x02\x42\r\n\x0b\x64\x65stination\"$\n\"BulkDownloadFeedbackLabelsResponse\"\x9a\x04\n\"BulkDownloadFeedbackLabelsMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12^\n\x07request\x18\x03 \x01(\x0b\x32H.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsRequestB\x03\xe0\x41\x03\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\x12t\n\x0e\x64ownload_stats\x18\x05 \x01(\x0b\x32W.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsMetadata.DownloadStatsB\x03\xe0\x41\x03\x1a\x88\x01\n\rDownloadStats\x12\x1e\n\x16processed_object_count\x18\x01 \x01(\x05\x12!\n\x19successful_download_count\x18\x02 \x01(\x05\x12\x1b\n\x13total_files_written\x18\x03 \x01(\x05\x12\x17\n\nfile_names\x18\x04 \x03(\tB\x03\xe0\x41\x03*J\n\x10\x43onversationView\x12!\n\x1d\x43ONVERSATION_VIEW_UNSPECIFIED\x10\x00\x12\x08\n\x04\x46ULL\x10\x02\x12\t\n\x05\x42\x41SIC\x10\x01\x32\x89\x87\x01\n\x15\x43ontactCenterInsights\x12\xfa\x01\n\x12\x43reateConversation\x12@.google.cloud.contactcenterinsights.v1.CreateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"m\xda\x41#parent,conversation,conversation_id\x82\xd3\xe4\x93\x02\x41\"1/v1/{parent=projects/*/locations/*}/conversations:\x0c\x63onversation\x12\xe7\x01\n\x12UploadConversation\x12@.google.cloud.contactcenterinsights.v1.UploadConversationRequest\x1a\x1d.google.longrunning.Operation\"p\xca\x41*\n\x0c\x43onversation\x12\x1aUploadConversationMetadata\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:upload:\x01*\x12\xfc\x01\n\x12UpdateConversation\x12@.google.cloud.contactcenterinsights.v1.UpdateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"o\xda\x41\x18\x63onversation,update_mask\x82\xd3\xe4\x93\x02N2>/v1/{conversation.name=projects/*/locations/*/conversations/*}:\x0c\x63onversation\x12\xc7\x01\n\x0fGetConversation\x12=.google.cloud.contactcenterinsights.v1.GetConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/conversations/*}\x12\xda\x01\n\x11ListConversations\x12?.google.cloud.contactcenterinsights.v1.ListConversationsRequest\x1a@.google.cloud.contactcenterinsights.v1.ListConversationsResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/conversations\x12\xb0\x01\n\x12\x44\x65leteConversation\x12@.google.cloud.contactcenterinsights.v1.DeleteConversationRequest\x1a\x16.google.protobuf.Empty\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/conversations/*}\x12\xfe\x01\n\x0e\x43reateAnalysis\x12<.google.cloud.contactcenterinsights.v1.CreateAnalysisRequest\x1a\x1d.google.longrunning.Operation\"\x8e\x01\xca\x41+\n\x08\x41nalysis\x12\x1f\x43reateAnalysisOperationMetadata\xda\x41\x0fparent,analysis\x82\xd3\xe4\x93\x02H\"</v1/{parent=projects/*/locations/*/conversations/*}/analyses:\x08\x61nalysis\x12\xc6\x01\n\x0bGetAnalysis\x12\x39.google.cloud.contactcenterinsights.v1.GetAnalysisRequest\x1a/.google.cloud.contactcenterinsights.v1.Analysis\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\x12\xd6\x01\n\x0cListAnalyses\x12:.google.cloud.contactcenterinsights.v1.ListAnalysesRequest\x1a;.google.cloud.contactcenterinsights.v1.ListAnalysesResponse\"M\xda\x41\x06parent\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/conversations/*}/analyses\x12\xb3\x01\n\x0e\x44\x65leteAnalysis\x12<.google.cloud.contactcenterinsights.v1.DeleteAnalysisRequest\x1a\x16.google.protobuf.Empty\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>*</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\x12\xb7\x02\n\x18\x42ulkAnalyzeConversations\x12\x46.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest\x1a\x1d.google.longrunning.Operation\"\xb3\x01\xca\x41\x44\n BulkAnalyzeConversationsResponse\x12 BulkAnalyzeConversationsMetadata\xda\x41!parent,filter,analysis_percentage\x82\xd3\xe4\x93\x02\x42\"=/v1/{parent=projects/*/locations/*}/conversations:bulkAnalyze:\x01*\x12\x9e\x02\n\x17\x42ulkDeleteConversations\x12\x45.google.cloud.contactcenterinsights.v1.BulkDeleteConversationsRequest\x1a\x1d.google.longrunning.Operation\"\x9c\x01\xca\x41\x42\n\x1f\x42ulkDeleteConversationsResponse\x12\x1f\x42ulkDeleteConversationsMetadata\xda\x41\rparent,filter\x82\xd3\xe4\x93\x02\x41\"</v1/{parent=projects/*/locations/*}/conversations:bulkDelete:\x01*\x12\x83\x02\n\x13IngestConversations\x12\x41.google.cloud.contactcenterinsights.v1.IngestConversationsRequest\x1a\x1d.google.longrunning.Operation\"\x89\x01\xca\x41:\n\x1bIngestConversationsResponse\x12\x1bIngestConversationsMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:ingest:\x01*\x12\xfe\x01\n\x12\x45xportInsightsData\x12@.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\xca\x41\x38\n\x1a\x45xportInsightsDataResponse\x12\x1a\x45xportInsightsDataMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\"7/v1/{parent=projects/*/locations/*}/insightsdata:export:\x01*\x12\xf6\x01\n\x10\x43reateIssueModel\x12>.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x82\x01\xca\x41&\n\nIssueModel\x12\x18\x43reateIssueModelMetadata\xda\x41\x12parent,issue_model\x82\xd3\xe4\x93\x02>\"//v1/{parent=projects/*/locations/*}/issueModels:\x0bissue_model\x12\xf1\x01\n\x10UpdateIssueModel\x12>.google.cloud.contactcenterinsights.v1.UpdateIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\"j\xda\x41\x17issue_model,update_mask\x82\xd3\xe4\x93\x02J2;/v1/{issue_model.name=projects/*/locations/*/issueModels/*}:\x0bissue_model\x12\xbf\x01\n\rGetIssueModel\x12;.google.cloud.contactcenterinsights.v1.GetIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\">\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31\x12//v1/{name=projects/*/locations/*/issueModels/*}\x12\xd2\x01\n\x0fListIssueModels\x12=.google.cloud.contactcenterinsights.v1.ListIssueModelsRequest\x1a>.google.cloud.contactcenterinsights.v1.ListIssueModelsResponse\"@\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x31\x12//v1/{parent=projects/*/locations/*}/issueModels\x12\xe5\x01\n\x10\x44\x65leteIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest\x1a\x1d.google.longrunning.Operation\"r\xca\x41\x31\n\x15google.protobuf.Empty\x12\x18\x44\x65leteIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31*//v1/{name=projects/*/locations/*/issueModels/*}\x12\xf2\x01\n\x10\x44\x65ployIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x7f\xca\x41\x34\n\x18\x44\x65ployIssueModelResponse\x12\x18\x44\x65ployIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/issueModels/*}:deploy:\x01*\x12\xfd\x01\n\x12UndeployIssueModel\x12@.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x85\x01\xca\x41\x38\n\x1aUndeployIssueModelResponse\x12\x1aUndeployIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02=\"8/v1/{name=projects/*/locations/*/issueModels/*}:undeploy:\x01*\x12\xf2\x01\n\x10\x45xportIssueModel\x12>.google.cloud.contactcenterinsights.v1.ExportIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x7f\xca\x41\x34\n\x18\x45xportIssueModelResponse\x12\x18\x45xportIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/issueModels/*}:export:\x01*\x12\xf5\x01\n\x10ImportIssueModel\x12>.google.cloud.contactcenterinsights.v1.ImportIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x81\x01\xca\x41\x34\n\x18ImportIssueModelResponse\x12\x18ImportIssueModelMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02;\"6/v1/{parent=projects/*/locations/*}/issueModels:import:\x01*\x12\xb9\x01\n\x08GetIssue\x12\x36.google.cloud.contactcenterinsights.v1.GetIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"G\xda\x41\x04name\x82\xd3\xe4\x93\x02:\x12\x38/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\x12\xcc\x01\n\nListIssues\x12\x38.google.cloud.contactcenterinsights.v1.ListIssuesRequest\x1a\x39.google.cloud.contactcenterinsights.v1.ListIssuesResponse\"I\xda\x41\x06parent\x82\xd3\xe4\x93\x02:\x12\x38/v1/{parent=projects/*/locations/*/issueModels/*}/issues\x12\xd9\x01\n\x0bUpdateIssue\x12\x39.google.cloud.contactcenterinsights.v1.UpdateIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"a\xda\x41\x11issue,update_mask\x82\xd3\xe4\x93\x02G2>/v1/{issue.name=projects/*/locations/*/issueModels/*/issues/*}:\x05issue\x12\xa9\x01\n\x0b\x44\x65leteIssue\x12\x39.google.cloud.contactcenterinsights.v1.DeleteIssueRequest\x1a\x16.google.protobuf.Empty\"G\xda\x41\x04name\x82\xd3\xe4\x93\x02:*8/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\x12\x92\x02\n\x18\x43\x61lculateIssueModelStats\x12\x46.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsRequest\x1aG.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsResponse\"e\xda\x41\x0bissue_model\x82\xd3\xe4\x93\x02Q\x12O/v1/{issue_model=projects/*/locations/*/issueModels/*}:calculateIssueModelStats\x12\xf2\x01\n\x13\x43reatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.CreatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"b\xda\x41\x15parent,phrase_matcher\x82\xd3\xe4\x93\x02\x44\"2/v1/{parent=projects/*/locations/*}/phraseMatchers:\x0ephrase_matcher\x12\xcb\x01\n\x10GetPhraseMatcher\x12>.google.cloud.contactcenterinsights.v1.GetPhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{name=projects/*/locations/*/phraseMatchers/*}\x12\xde\x01\n\x12ListPhraseMatchers\x12@.google.cloud.contactcenterinsights.v1.ListPhraseMatchersRequest\x1a\x41.google.cloud.contactcenterinsights.v1.ListPhraseMatchersResponse\"C\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{parent=projects/*/locations/*}/phraseMatchers\x12\xb3\x01\n\x13\x44\x65letePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest\x1a\x16.google.protobuf.Empty\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34*2/v1/{name=projects/*/locations/*/phraseMatchers/*}\x12\x86\x02\n\x13UpdatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.UpdatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"v\xda\x41\x1aphrase_matcher,update_mask\x82\xd3\xe4\x93\x02S2A/v1/{phrase_matcher.name=projects/*/locations/*/phraseMatchers/*}:\x0ephrase_matcher\x12\xe4\x01\n\x0e\x43\x61lculateStats\x12<.google.cloud.contactcenterinsights.v1.CalculateStatsRequest\x1a=.google.cloud.contactcenterinsights.v1.CalculateStatsResponse\"U\xda\x41\x08location\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{location=projects/*/locations/*}/conversations:calculateStats\x12\xb4\x01\n\x0bGetSettings\x12\x39.google.cloud.contactcenterinsights.v1.GetSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"9\xda\x41\x04name\x82\xd3\xe4\x93\x02,\x12*/v1/{name=projects/*/locations/*/settings}\x12\xdd\x01\n\x0eUpdateSettings\x12<.google.cloud.contactcenterinsights.v1.UpdateSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"\\\xda\x41\x14settings,update_mask\x82\xd3\xe4\x93\x02?23/v1/{settings.name=projects/*/locations/*/settings}:\x08settings\x12\xec\x01\n\x12\x43reateAnalysisRule\x12@.google.cloud.contactcenterinsights.v1.CreateAnalysisRuleRequest\x1a\x33.google.cloud.contactcenterinsights.v1.AnalysisRule\"_\xda\x41\x14parent,analysis_rule\x82\xd3\xe4\x93\x02\x42\"1/v1/{parent=projects/*/locations/*}/analysisRules:\ranalysis_rule\x12\xc7\x01\n\x0fGetAnalysisRule\x12=.google.cloud.contactcenterinsights.v1.GetAnalysisRuleRequest\x1a\x33.google.cloud.contactcenterinsights.v1.AnalysisRule\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/analysisRules/*}\x12\xda\x01\n\x11ListAnalysisRules\x12?.google.cloud.contactcenterinsights.v1.ListAnalysisRulesRequest\x1a@.google.cloud.contactcenterinsights.v1.ListAnalysisRulesResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/analysisRules\x12\xff\x01\n\x12UpdateAnalysisRule\x12@.google.cloud.contactcenterinsights.v1.UpdateAnalysisRuleRequest\x1a\x33.google.cloud.contactcenterinsights.v1.AnalysisRule\"r\xda\x41\x19\x61nalysis_rule,update_mask\x82\xd3\xe4\x93\x02P2?/v1/{analysis_rule.name=projects/*/locations/*/analysisRules/*}:\ranalysis_rule\x12\xb0\x01\n\x12\x44\x65leteAnalysisRule\x12@.google.cloud.contactcenterinsights.v1.DeleteAnalysisRuleRequest\x1a\x16.google.protobuf.Empty\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/analysisRules/*}\x12\xcc\x01\n\x11GetEncryptionSpec\x12?.google.cloud.contactcenterinsights.v1.GetEncryptionSpecRequest\x1a\x35.google.cloud.contactcenterinsights.v1.EncryptionSpec\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{name=projects/*/locations/*/encryptionSpec}\x12\xb3\x02\n\x18InitializeEncryptionSpec\x12\x46.google.cloud.contactcenterinsights.v1.InitializeEncryptionSpecRequest\x1a\x1d.google.longrunning.Operation\"\xaf\x01\xca\x41\x44\n InitializeEncryptionSpecResponse\x12 InitializeEncryptionSpecMetadata\xda\x41\x0f\x65ncryption_spec\x82\xd3\xe4\x93\x02P\"K/v1/{encryption_spec.name=projects/*/locations/*/encryptionSpec}:initialize:\x01*\x12\xba\x01\n\nCreateView\x12\x38.google.cloud.contactcenterinsights.v1.CreateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"E\xda\x41\x0bparent,view\x82\xd3\xe4\x93\x02\x31\")/v1/{parent=projects/*/locations/*}/views:\x04view\x12\xa7\x01\n\x07GetView\x12\x35.google.cloud.contactcenterinsights.v1.GetViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"8\xda\x41\x04name\x82\xd3\xe4\x93\x02+\x12)/v1/{name=projects/*/locations/*/views/*}\x12\xba\x01\n\tListViews\x12\x37.google.cloud.contactcenterinsights.v1.ListViewsRequest\x1a\x38.google.cloud.contactcenterinsights.v1.ListViewsResponse\":\xda\x41\x06parent\x82\xd3\xe4\x93\x02+\x12)/v1/{parent=projects/*/locations/*}/views\x12\xc4\x01\n\nUpdateView\x12\x38.google.cloud.contactcenterinsights.v1.UpdateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"O\xda\x41\x10view,update_mask\x82\xd3\xe4\x93\x02\x36\x32./v1/{view.name=projects/*/locations/*/views/*}:\x04view\x12\x98\x01\n\nDeleteView\x12\x38.google.cloud.contactcenterinsights.v1.DeleteViewRequest\x1a\x16.google.protobuf.Empty\"8\xda\x41\x04name\x82\xd3\xe4\x93\x02+*)/v1/{name=projects/*/locations/*/views/*}\x12\xd7\x01\n\x0cQueryMetrics\x12:.google.cloud.contactcenterinsights.v1.QueryMetricsRequest\x1a\x1d.google.longrunning.Operation\"l\xca\x41,\n\x14QueryMetricsResponse\x12\x14QueryMetricsMetadata\x82\xd3\xe4\x93\x02\x37\"2/v1/{location=projects/*/locations/*}:queryMetrics:\x01*\x12\x8c\x02\n\x10\x43reateQaQuestion\x12>.google.cloud.contactcenterinsights.v1.CreateQaQuestionRequest\x1a\x31.google.cloud.contactcenterinsights.v1.QaQuestion\"\x84\x01\xda\x41\"parent,qa_question, qa_question_id\x82\xd3\xe4\x93\x02Y\"J/v1/{parent=projects/*/locations/*/qaScorecards/*/revisions/*}/qaQuestions:\x0bqa_question\x12\xda\x01\n\rGetQaQuestion\x12;.google.cloud.contactcenterinsights.v1.GetQaQuestionRequest\x1a\x31.google.cloud.contactcenterinsights.v1.QaQuestion\"Y\xda\x41\x04name\x82\xd3\xe4\x93\x02L\x12J/v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*/qaQuestions/*}\x12\x8d\x02\n\x10UpdateQaQuestion\x12>.google.cloud.contactcenterinsights.v1.UpdateQaQuestionRequest\x1a\x31.google.cloud.contactcenterinsights.v1.QaQuestion\"\x85\x01\xda\x41\x17qa_question,update_mask\x82\xd3\xe4\x93\x02\x65\x32V/v1/{qa_question.name=projects/*/locations/*/qaScorecards/*/revisions/*/qaQuestions/*}:\x0bqa_question\x12\xc5\x01\n\x10\x44\x65leteQaQuestion\x12>.google.cloud.contactcenterinsights.v1.DeleteQaQuestionRequest\x1a\x16.google.protobuf.Empty\"Y\xda\x41\x04name\x82\xd3\xe4\x93\x02L*J/v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*/qaQuestions/*}\x12\xed\x01\n\x0fListQaQuestions\x12=.google.cloud.contactcenterinsights.v1.ListQaQuestionsRequest\x1a>.google.cloud.contactcenterinsights.v1.ListQaQuestionsResponse\"[\xda\x41\x06parent\x82\xd3\xe4\x93\x02L\x12J/v1/{parent=projects/*/locations/*/qaScorecards/*/revisions/*}/qaQuestions\x12\xf6\x01\n\x11\x43reateQaScorecard\x12?.google.cloud.contactcenterinsights.v1.CreateQaScorecardRequest\x1a\x32.google.cloud.contactcenterinsights.v1.QaScorecard\"l\xda\x41#parent,qa_scorecard,qa_scorecard_id\x82\xd3\xe4\x93\x02@\"0/v1/{parent=projects/*/locations/*}/qaScorecards:\x0cqa_scorecard\x12\xc3\x01\n\x0eGetQaScorecard\x12<.google.cloud.contactcenterinsights.v1.GetQaScorecardRequest\x1a\x32.google.cloud.contactcenterinsights.v1.QaScorecard\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{name=projects/*/locations/*/qaScorecards/*}\x12\xf8\x01\n\x11UpdateQaScorecard\x12?.google.cloud.contactcenterinsights.v1.UpdateQaScorecardRequest\x1a\x32.google.cloud.contactcenterinsights.v1.QaScorecard\"n\xda\x41\x18qa_scorecard,update_mask\x82\xd3\xe4\x93\x02M2=/v1/{qa_scorecard.name=projects/*/locations/*/qaScorecards/*}:\x0cqa_scorecard\x12\xad\x01\n\x11\x44\x65leteQaScorecard\x12?.google.cloud.contactcenterinsights.v1.DeleteQaScorecardRequest\x1a\x16.google.protobuf.Empty\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32*0/v1/{name=projects/*/locations/*/qaScorecards/*}\x12\xd6\x01\n\x10ListQaScorecards\x12>.google.cloud.contactcenterinsights.v1.ListQaScorecardsRequest\x1a?.google.cloud.contactcenterinsights.v1.ListQaScorecardsResponse\"A\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{parent=projects/*/locations/*}/qaScorecards\x12\xb6\x02\n\x19\x43reateQaScorecardRevision\x12G.google.cloud.contactcenterinsights.v1.CreateQaScorecardRevisionRequest\x1a:.google.cloud.contactcenterinsights.v1.QaScorecardRevision\"\x93\x01\xda\x41\x35parent,qa_scorecard_revision,qa_scorecard_revision_id\x82\xd3\xe4\x93\x02U\"</v1/{parent=projects/*/locations/*/qaScorecards/*}/revisions:\x15qa_scorecard_revision\x12\xe7\x01\n\x16GetQaScorecardRevision\x12\x44.google.cloud.contactcenterinsights.v1.GetQaScorecardRevisionRequest\x1a:.google.cloud.contactcenterinsights.v1.QaScorecardRevision\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*}\x12\xc6\x02\n\x17TuneQaScorecardRevision\x12\x45.google.cloud.contactcenterinsights.v1.TuneQaScorecardRevisionRequest\x1a\x1d.google.longrunning.Operation\"\xc4\x01\xca\x41\x42\n\x1fTuneQaScorecardRevisionResponse\x12\x1fTuneQaScorecardRevisionMetadata\xda\x41\x1bparent,filter,validate_only\x82\xd3\xe4\x93\x02[\"V/v1/{parent=projects/*/locations/*/qaScorecards/*/revisions/*}:tuneQaScorecardRevision:\x01*\x12\xf0\x01\n\x19\x44\x65ployQaScorecardRevision\x12G.google.cloud.contactcenterinsights.v1.DeployQaScorecardRevisionRequest\x1a:.google.cloud.contactcenterinsights.v1.QaScorecardRevision\"N\x82\xd3\xe4\x93\x02H\"C/v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*}:deploy:\x01*\x12\xf6\x01\n\x1bUndeployQaScorecardRevision\x12I.google.cloud.contactcenterinsights.v1.UndeployQaScorecardRevisionRequest\x1a:.google.cloud.contactcenterinsights.v1.QaScorecardRevision\"P\x82\xd3\xe4\x93\x02J\"E/v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*}:undeploy:\x01*\x12\xc9\x01\n\x19\x44\x65leteQaScorecardRevision\x12G.google.cloud.contactcenterinsights.v1.DeleteQaScorecardRevisionRequest\x1a\x16.google.protobuf.Empty\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>*</v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*}\x12\xfa\x01\n\x18ListQaScorecardRevisions\x12\x46.google.cloud.contactcenterinsights.v1.ListQaScorecardRevisionsRequest\x1aG.google.cloud.contactcenterinsights.v1.ListQaScorecardRevisionsResponse\"M\xda\x41\x06parent\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/qaScorecards/*}/revisions\x12\x95\x02\n\x13\x43reateFeedbackLabel\x12\x41.google.cloud.contactcenterinsights.v1.CreateFeedbackLabelRequest\x1a\x34.google.cloud.contactcenterinsights.v1.FeedbackLabel\"\x84\x01\xda\x41\'parent,feedback_label,feedback_label_id\x82\xd3\xe4\x93\x02T\"B/v1/{parent=projects/*/locations/*/conversations/*}/feedbackLabels:\x0e\x66\x65\x65\x64\x62\x61\x63k_label\x12\xee\x01\n\x12ListFeedbackLabels\x12@.google.cloud.contactcenterinsights.v1.ListFeedbackLabelsRequest\x1a\x41.google.cloud.contactcenterinsights.v1.ListFeedbackLabelsResponse\"S\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{parent=projects/*/locations/*/conversations/*}/feedbackLabels\x12\xdb\x01\n\x10GetFeedbackLabel\x12>.google.cloud.contactcenterinsights.v1.GetFeedbackLabelRequest\x1a\x34.google.cloud.contactcenterinsights.v1.FeedbackLabel\"Q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{name=projects/*/locations/*/conversations/*/feedbackLabels/*}\x12\x97\x02\n\x13UpdateFeedbackLabel\x12\x41.google.cloud.contactcenterinsights.v1.UpdateFeedbackLabelRequest\x1a\x34.google.cloud.contactcenterinsights.v1.FeedbackLabel\"\x86\x01\xda\x41\x1a\x66\x65\x65\x64\x62\x61\x63k_label,update_mask\x82\xd3\xe4\x93\x02\x63\x32Q/v1/{feedback_label.name=projects/*/locations/*/conversations/*/feedbackLabels/*}:\x0e\x66\x65\x65\x64\x62\x61\x63k_label\x12\xc3\x01\n\x13\x44\x65leteFeedbackLabel\x12\x41.google.cloud.contactcenterinsights.v1.DeleteFeedbackLabelRequest\x1a\x16.google.protobuf.Empty\"Q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44*B/v1/{name=projects/*/locations/*/conversations/*/feedbackLabels/*}\x12\xee\x01\n\x15ListAllFeedbackLabels\x12\x43.google.cloud.contactcenterinsights.v1.ListAllFeedbackLabelsRequest\x1a\x44.google.cloud.contactcenterinsights.v1.ListAllFeedbackLabelsResponse\"J\xda\x41\x06parent\x82\xd3\xe4\x93\x02;\x12\x39/v1/{parent=projects/*/locations/*}:listAllFeedbackLabels\x12\x9b\x02\n\x18\x42ulkUploadFeedbackLabels\x12\x46.google.cloud.contactcenterinsights.v1.BulkUploadFeedbackLabelsRequest\x1a\x1d.google.longrunning.Operation\"\x97\x01\xca\x41\x44\n BulkUploadFeedbackLabelsResponse\x12 BulkUploadFeedbackLabelsMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x41\"</v1/{parent=projects/*/locations/*}:bulkUploadFeedbackLabels:\x01*\x12\xa5\x02\n\x1a\x42ulkDownloadFeedbackLabels\x12H.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsRequest\x1a\x1d.google.longrunning.Operation\"\x9d\x01\xca\x41H\n\"BulkDownloadFeedbackLabelsResponse\x12\"BulkDownloadFeedbackLabelsMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x43\">/v1/{parent=projects/*/locations/*}:bulkDownloadFeedbackLabels:\x01*\x1aX\xca\x41$contactcenterinsights.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xa5\x02\n)com.google.cloud.contactcenterinsights.v1B\x1a\x43ontactCenterInsightsProtoP\x01Z_cloud.google.com/go/contactcenterinsights/apiv1/contactcenterinsightspb;contactcenterinsightspb\xaa\x02%Google.Cloud.ContactCenterInsights.V1\xca\x02%Google\\Cloud\\ContactCenterInsights\\V1\xea\x02(Google::Cloud::ContactCenterInsights::V1b\x06proto3"
|
21
|
+
descriptor_data = "\nCgoogle/cloud/contactcenterinsights/v1/contact_center_insights.proto\x12%google.cloud.contactcenterinsights.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x35google/cloud/contactcenterinsights/v1/resources.proto\x1a#google/longrunning/operations.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\x1a\x1agoogle/type/interval.proto\"d\n\x15\x43\x61lculateStatsRequest\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\"\x8f\n\n\x16\x43\x61lculateStatsResponse\x12\x33\n\x10\x61verage_duration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x1a\n\x12\x61verage_turn_count\x18\x02 \x01(\x05\x12\x1a\n\x12\x63onversation_count\x18\x03 \x01(\x05\x12}\n\x19smart_highlighter_matches\x18\x04 \x03(\x0b\x32Z.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.SmartHighlighterMatchesEntry\x12\x7f\n\x1a\x63ustom_highlighter_matches\x18\x05 \x03(\x0b\x32[.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.CustomHighlighterMatchesEntry\x12j\n\rissue_matches\x18\x06 \x03(\x0b\x32O.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.IssueMatchesEntryB\x02\x18\x01\x12q\n\x13issue_matches_stats\x18\x08 \x03(\x0b\x32T.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.IssueMatchesStatsEntry\x12p\n\x1e\x63onversation_count_time_series\x18\x07 \x01(\x0b\x32H.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries\x1a\xfd\x01\n\nTimeSeries\x12\x34\n\x11interval_duration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x61\n\x06points\x18\x02 \x03(\x0b\x32Q.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries.Interval\x1aV\n\x08Interval\x12.\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1a\n\x12\x63onversation_count\x18\x02 \x01(\x05\x1a>\n\x1cSmartHighlighterMatchesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a?\n\x1d\x43ustomHighlighterMatchesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a\x33\n\x11IssueMatchesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a\x80\x01\n\x16IssueMatchesStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12U\n\x05value\x18\x02 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats:\x02\x38\x01\"\xb6\x02\n\x1f\x43reateAnalysisOperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x0c\x63onversation\x18\x03 \x01(\tB9\xe0\x41\x03\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12Y\n\x12\x61nnotator_selector\x18\x04 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelectorB\x03\xe0\x41\x03\"\xbf\x01\n\x19\x43reateConversationRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12N\n\x0c\x63onversation\x18\x02 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.ConversationB\x03\xe0\x41\x02\x12\x17\n\x0f\x63onversation_id\x18\x03 \x01(\t\"\xec\x02\n\x19UploadConversationRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12N\n\x0c\x63onversation\x18\x02 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.ConversationB\x03\xe0\x41\x02\x12\x1c\n\x0f\x63onversation_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12U\n\x10redaction_config\x18\x04 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.RedactionConfigB\x03\xe0\x41\x01\x12O\n\rspeech_config\x18\x0b \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.SpeechConfigB\x03\xe0\x41\x01\"\xdd\x02\n\x1aUploadConversationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12V\n\x07request\x18\x03 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.UploadConversationRequestB\x03\xe0\x41\x03\x12\x1f\n\x12\x61nalysis_operation\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12]\n\x18\x61pplied_redaction_config\x18\x05 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.RedactionConfigB\x03\xe0\x41\x03\"\xea\x01\n\x18ListConversationsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x15\n\x08order_by\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12\x45\n\x04view\x18\x05 \x01(\x0e\x32\x37.google.cloud.contactcenterinsights.v1.ConversationView\"\x80\x01\n\x19ListConversationsResponse\x12J\n\rconversations\x18\x01 \x03(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.Conversation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xa8\x01\n\x16GetConversationRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x45\n\x04view\x18\x02 \x01(\x0e\x32\x37.google.cloud.contactcenterinsights.v1.ConversationView\"\x9c\x01\n\x19UpdateConversationRequest\x12N\n\x0c\x63onversation\x18\x01 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.ConversationB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"s\n\x19\x44\x65leteConversationRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\r\n\x05\x66orce\x18\x02 \x01(\x08\"\xcb\t\n\x1aIngestConversationsRequest\x12\x61\n\ngcs_source\x18\x02 \x01(\x0b\x32K.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSourceH\x00\x12|\n\x18transcript_object_config\x18\x03 \x01(\x0b\x32X.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.TranscriptObjectConfigH\x01\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12q\n\x13\x63onversation_config\x18\x04 \x01(\x0b\x32T.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.ConversationConfig\x12U\n\x10redaction_config\x18\x05 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.RedactionConfigB\x03\xe0\x41\x01\x12O\n\rspeech_config\x18\x06 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.SpeechConfigB\x03\xe0\x41\x01\x12\x1d\n\x0bsample_size\x18\x07 \x01(\x05\x42\x03\xe0\x41\x01H\x02\x88\x01\x01\x1a\xd8\x02\n\tGcsSource\x12\x17\n\nbucket_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12}\n\x12\x62ucket_object_type\x18\x02 \x01(\x0e\x32\\.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSource.BucketObjectTypeB\x03\xe0\x41\x01\x12%\n\x13metadata_bucket_uri\x18\x03 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12!\n\x14\x63ustom_metadata_keys\x18\x0c \x03(\tB\x03\xe0\x41\x01\"Q\n\x10\x42ucketObjectType\x12\"\n\x1e\x42UCKET_OBJECT_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nTRANSCRIPT\x10\x01\x12\t\n\x05\x41UDIO\x10\x02\x42\x16\n\x14_metadata_bucket_uri\x1ai\n\x16TranscriptObjectConfig\x12O\n\x06medium\x18\x01 \x01(\x0e\x32:.google.cloud.contactcenterinsights.v1.Conversation.MediumB\x03\xe0\x41\x02\x1a\x66\n\x12\x43onversationConfig\x12\x15\n\x08\x61gent_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\ragent_channel\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x1d\n\x10\x63ustomer_channel\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x42\x08\n\x06sourceB\x0f\n\robject_configB\x0e\n\x0c_sample_size\"\xc8\x04\n\x1bIngestConversationsMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12W\n\x07request\x18\x03 \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.IngestConversationsRequestB\x03\xe0\x41\x03\x12/\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\x12\x84\x01\n\x1aingest_conversations_stats\x18\x05 \x01(\x0b\x32[.google.cloud.contactcenterinsights.v1.IngestConversationsMetadata.IngestConversationsStatsB\x03\xe0\x41\x03\x1a\xae\x01\n\x18IngestConversationsStats\x12#\n\x16processed_object_count\x18\x01 \x01(\x05\x42\x03\xe0\x41\x03\x12%\n\x18\x64uplicates_skipped_count\x18\x02 \x01(\x05\x42\x03\xe0\x41\x03\x12$\n\x17successful_ingest_count\x18\x03 \x01(\x05\x42\x03\xe0\x41\x03\x12 \n\x13\x66\x61iled_ingest_count\x18\x04 \x01(\x05\x42\x03\xe0\x41\x03\"\x1d\n\x1bIngestConversationsResponse\"\xaa\x01\n\x15\x43reateAnalysisRequest\x12I\n\x06parent\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x46\n\x08\x61nalysis\x18\x02 \x01(\x0b\x32/.google.cloud.contactcenterinsights.v1.AnalysisB\x03\xe0\x41\x02\"\x97\x01\n\x13ListAnalysesRequest\x12I\n\x06parent\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\"r\n\x14ListAnalysesResponse\x12\x41\n\x08\x61nalyses\x18\x01 \x03(\x0b\x32/.google.cloud.contactcenterinsights.v1.Analysis\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"Y\n\x12GetAnalysisRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-contactcenterinsights.googleapis.com/Analysis\"\\\n\x15\x44\x65leteAnalysisRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-contactcenterinsights.googleapis.com/Analysis\"\xe9\x01\n\x1f\x42ulkAnalyzeConversationsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12 \n\x13\x61nalysis_percentage\x18\x03 \x01(\x02\x42\x03\xe0\x41\x02\x12T\n\x12\x61nnotator_selector\x18\x08 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelector\"\xf4\x02\n BulkAnalyzeConversationsMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12W\n\x07request\x18\x03 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest\x12 \n\x18\x63ompleted_analyses_count\x18\x04 \x01(\x05\x12\x1d\n\x15\x66\x61iled_analyses_count\x18\x05 \x01(\x05\x12&\n\x1etotal_requested_analyses_count\x18\x06 \x01(\x05\x12/\n\x0epartial_errors\x18\x07 \x03(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\"d\n BulkAnalyzeConversationsResponse\x12!\n\x19successful_analysis_count\x18\x01 \x01(\x05\x12\x1d\n\x15\x66\x61iled_analysis_count\x18\x02 \x01(\x05\"\x94\x01\n\x1e\x42ulkDeleteConversationsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\x12\x18\n\x10max_delete_count\x18\x03 \x01(\x05\x12\r\n\x05\x66orce\x18\x04 \x01(\x08\"\x84\x02\n\x1f\x42ulkDeleteConversationsMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12V\n\x07request\x18\x03 \x01(\x0b\x32\x45.google.cloud.contactcenterinsights.v1.BulkDeleteConversationsRequest\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"!\n\x1f\x42ulkDeleteConversationsResponse\"\x98\x04\n\x19\x45xportInsightsDataRequest\x12u\n\x15\x62ig_query_destination\x18\x02 \x01(\x0b\x32T.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.BigQueryDestinationH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x0e\n\x06\x66ilter\x18\x03 \x01(\t\x12\x0f\n\x07kms_key\x18\x04 \x01(\t\x12l\n\x11write_disposition\x18\x05 \x01(\x0e\x32Q.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.WriteDisposition\x1aN\n\x13\x42igQueryDestination\x12\x12\n\nproject_id\x18\x03 \x01(\t\x12\x14\n\x07\x64\x61taset\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\r\n\x05table\x18\x02 \x01(\t\"[\n\x10WriteDisposition\x12!\n\x1dWRITE_DISPOSITION_UNSPECIFIED\x10\x00\x12\x12\n\x0eWRITE_TRUNCATE\x10\x01\x12\x10\n\x0cWRITE_APPEND\x10\x02\x42\r\n\x0b\x64\x65stination\"\x84\x02\n\x1a\x45xportInsightsDataMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Q\n\x07request\x18\x03 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"\x1c\n\x1a\x45xportInsightsDataResponse\"\xa1\x01\n\x17\x43reateIssueModelRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12K\n\x0bissue_model\x18\x02 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModelB\x03\xe0\x41\x02\"\xd4\x01\n\x18\x43reateIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest\"\x97\x01\n\x17UpdateIssueModelRequest\x12K\n\x0bissue_model\x18\x01 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModelB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"S\n\x16ListIssueModelsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\"b\n\x17ListIssueModelsResponse\x12G\n\x0cissue_models\x18\x01 \x03(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModel\"]\n\x14GetIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"`\n\x17\x44\x65leteIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\xd4\x01\n\x18\x44\x65leteIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest\"`\n\x17\x44\x65ployIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\x1a\n\x18\x44\x65ployIssueModelResponse\"\xd4\x01\n\x18\x44\x65ployIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest\"b\n\x19UndeployIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\x1c\n\x1aUndeployIssueModelResponse\"\xd8\x01\n\x1aUndeployIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Q\n\x07request\x18\x03 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest\"\x84\x02\n\x17\x45xportIssueModelRequest\x12h\n\x0fgcs_destination\x18\x02 \x01(\x0b\x32M.google.cloud.contactcenterinsights.v1.ExportIssueModelRequest.GcsDestinationH\x00\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\x1a)\n\x0eGcsDestination\x12\x17\n\nobject_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x42\r\n\x0b\x44\x65stination\"\x1a\n\x18\x45xportIssueModelResponse\"\xca\x01\n\x18\x45xportIssueModelMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.ExportIssueModelRequest\"\x83\x02\n\x17ImportIssueModelRequest\x12^\n\ngcs_source\x18\x02 \x01(\x0b\x32H.google.cloud.contactcenterinsights.v1.ImportIssueModelRequest.GcsSourceH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x1d\n\x10\x63reate_new_model\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x1a$\n\tGcsSource\x12\x17\n\nobject_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x42\x08\n\x06Source\"\x1a\n\x18ImportIssueModelResponse\"\xca\x01\n\x18ImportIssueModelMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.ImportIssueModelRequest\"S\n\x0fGetIssueRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*contactcenterinsights.googleapis.com/Issue\"\\\n\x11ListIssuesRequest\x12G\n\x06parent\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"R\n\x12ListIssuesResponse\x12<\n\x06issues\x18\x01 \x03(\x0b\x32,.google.cloud.contactcenterinsights.v1.Issue\"\x87\x01\n\x12UpdateIssueRequest\x12@\n\x05issue\x18\x01 \x01(\x0b\x32,.google.cloud.contactcenterinsights.v1.IssueB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"V\n\x12\x44\x65leteIssueRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*contactcenterinsights.googleapis.com/Issue\"o\n\x1f\x43\x61lculateIssueModelStatsRequest\x12L\n\x0bissue_model\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"v\n CalculateIssueModelStatsResponse\x12R\n\rcurrent_stats\x18\x04 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.IssueModelLabelStats\"\xaa\x01\n\x1a\x43reatePhraseMatcherRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12Q\n\x0ephrase_matcher\x18\x02 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.PhraseMatcherB\x03\xe0\x41\x02\"\x8d\x01\n\x19ListPhraseMatchersRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\"\x84\x01\n\x1aListPhraseMatchersResponse\x12M\n\x0fphrase_matchers\x18\x01 \x03(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"c\n\x17GetPhraseMatcherRequest\x12H\n\x04name\x18\x01 \x01(\tB:\xe0\x41\x02\xfa\x41\x34\n2contactcenterinsights.googleapis.com/PhraseMatcher\"f\n\x1a\x44\x65letePhraseMatcherRequest\x12H\n\x04name\x18\x01 \x01(\tB:\xe0\x41\x02\xfa\x41\x34\n2contactcenterinsights.googleapis.com/PhraseMatcher\"\xa0\x01\n\x1aUpdatePhraseMatcherRequest\x12Q\n\x0ephrase_matcher\x18\x01 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.PhraseMatcherB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"Y\n\x12GetSettingsRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-contactcenterinsights.googleapis.com/Settings\"\x95\x01\n\x15UpdateSettingsRequest\x12\x46\n\x08settings\x18\x01 \x01(\x0b\x32/.google.cloud.contactcenterinsights.v1.SettingsB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"\xa7\x01\n\x19\x43reateAnalysisRuleRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12O\n\ranalysis_rule\x18\x02 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.AnalysisRuleB\x03\xe0\x41\x02\"a\n\x16GetAnalysisRuleRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/AnalysisRule\"\xa2\x01\n\x19UpdateAnalysisRuleRequest\x12O\n\ranalysis_rule\x18\x01 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.AnalysisRuleB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\"d\n\x19\x44\x65leteAnalysisRuleRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/AnalysisRule\"\x86\x01\n\x18ListAnalysisRulesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x81\x01\n\x19ListAnalysisRulesResponse\x12K\n\x0e\x61nalysis_rules\x18\x01 \x03(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.AnalysisRule\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"e\n\x18GetEncryptionSpecRequest\x12I\n\x04name\x18\x01 \x01(\tB;\xe0\x41\x02\xfa\x41\x35\n3contactcenterinsights.googleapis.com/EncryptionSpec\"v\n\x1fInitializeEncryptionSpecRequest\x12S\n\x0f\x65ncryption_spec\x18\x01 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.EncryptionSpecB\x03\xe0\x41\x02\"\"\n InitializeEncryptionSpecResponse\"\x95\x02\n InitializeEncryptionSpecMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\\\n\x07request\x18\x03 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.InitializeEncryptionSpecRequestB\x03\xe0\x41\x03\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"\x8e\x01\n\x11\x43reateViewRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12>\n\x04view\x18\x02 \x01(\x0b\x32+.google.cloud.contactcenterinsights.v1.ViewB\x03\xe0\x41\x02\"Q\n\x0eGetViewRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)contactcenterinsights.googleapis.com/View\"t\n\x10ListViewsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"h\n\x11ListViewsResponse\x12:\n\x05views\x18\x01 \x03(\x0b\x32+.google.cloud.contactcenterinsights.v1.View\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x84\x01\n\x11UpdateViewRequest\x12>\n\x04view\x18\x01 \x01(\x0b\x32+.google.cloud.contactcenterinsights.v1.ViewB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"T\n\x11\x44\x65leteViewRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)contactcenterinsights.googleapis.com/View\"\xc9\n\n\tDimension\x12p\n\x18issue_dimension_metadata\x18\x02 \x01(\x0b\x32G.google.cloud.contactcenterinsights.v1.Dimension.IssueDimensionMetadataB\x03\xe0\x41\x03H\x00\x12p\n\x18\x61gent_dimension_metadata\x18\x03 \x01(\x0b\x32G.google.cloud.contactcenterinsights.v1.Dimension.AgentDimensionMetadataB\x03\xe0\x41\x03H\x00\x12{\n\x1eqa_question_dimension_metadata\x18\x04 \x01(\x0b\x32L.google.cloud.contactcenterinsights.v1.Dimension.QaQuestionDimensionMetadataB\x03\xe0\x41\x03H\x00\x12\x88\x01\n%qa_question_answer_dimension_metadata\x18\x05 \x01(\x0b\x32R.google.cloud.contactcenterinsights.v1.Dimension.QaQuestionAnswerDimensionMetadataB\x03\xe0\x41\x03H\x00\x12T\n\rdimension_key\x18\x01 \x01(\x0e\x32=.google.cloud.contactcenterinsights.v1.Dimension.DimensionKey\x1a\xc5\x01\n\x16IssueDimensionMetadata\x12\x41\n\x08issue_id\x18\x01 \x01(\tB/\xfa\x41,\n*contactcenterinsights.googleapis.com/Issue\x12\x1a\n\x12issue_display_name\x18\x02 \x01(\t\x12L\n\x0eissue_model_id\x18\x03 \x01(\tB4\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\x1ai\n\x16\x41gentDimensionMetadata\x12\x15\n\x08\x61gent_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1f\n\x12\x61gent_display_name\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x17\n\nagent_team\x18\x03 \x01(\tB\x03\xe0\x41\x01\x1at\n\x1bQaQuestionDimensionMetadata\x12\x1c\n\x0fqa_scorecard_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1b\n\x0eqa_question_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rquestion_body\x18\x03 \x01(\tB\x03\xe0\x41\x01\x1a\x95\x01\n!QaQuestionAnswerDimensionMetadata\x12\x1c\n\x0fqa_scorecard_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1b\n\x0eqa_question_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rquestion_body\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0c\x61nswer_value\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xa2\x01\n\x0c\x44imensionKey\x12\x1d\n\x19\x44IMENSION_KEY_UNSPECIFIED\x10\x00\x12\t\n\x05ISSUE\x10\x01\x12\t\n\x05\x41GENT\x10\x02\x12\x0e\n\nAGENT_TEAM\x10\x03\x12\x12\n\x0eQA_QUESTION_ID\x10\x04\x12\x1c\n\x18QA_QUESTION_ANSWER_VALUE\x10\x05\x12\x1b\n\x17\x43ONVERSATION_PROFILE_ID\x10\x06\x42\x14\n\x12\x64imension_metadata\"\xcc\x03\n\x13QueryMetricsRequest\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x64\n\x10time_granularity\x18\x03 \x01(\x0e\x32J.google.cloud.contactcenterinsights.v1.QueryMetricsRequest.TimeGranularity\x12\x44\n\ndimensions\x18\x04 \x03(\x0b\x32\x30.google.cloud.contactcenterinsights.v1.Dimension\x12\x30\n\x0cmeasure_mask\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"\x84\x01\n\x0fTimeGranularity\x12 \n\x1cTIME_GRANULARITY_UNSPECIFIED\x10\x00\x12\x08\n\x04NONE\x10\x01\x12\t\n\x05\x44\x41ILY\x10\x02\x12\n\n\x06HOURLY\x10\x03\x12\x0e\n\nPER_MINUTE\x10\x04\x12\x11\n\rPER_5_MINUTES\x10\x05\x12\x0b\n\x07MONTHLY\x10\x06\"\x9a\x0e\n\x14QueryMetricsResponse\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12/\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12Q\n\x06slices\x18\x02 \x03(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice\x12\x63\n\x13macro_average_slice\x18\x04 \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.SliceH\x00\x88\x01\x01\x1a\xc3\x0b\n\x05Slice\x12\x44\n\ndimensions\x18\x01 \x03(\x0b\x32\x30.google.cloud.contactcenterinsights.v1.Dimension\x12Z\n\x05total\x18\x02 \x01(\x0b\x32K.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice.DataPoint\x12\x61\n\x0btime_series\x18\x03 \x01(\x0b\x32L.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice.TimeSeries\x1a\xc4\x08\n\tDataPoint\x12\x7f\n\x14\x63onversation_measure\x18\x02 \x01(\x0b\x32_.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice.DataPoint.ConversationMeasureH\x00\x12\'\n\x08interval\x18\x01 \x01(\x0b\x32\x15.google.type.Interval\x1a\x81\x07\n\x13\x43onversationMeasure\x12\x1f\n\x12\x63onversation_count\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\'\n\x1a\x61verage_silence_percentage\x18\x02 \x01(\x02H\x01\x88\x01\x01\x12\x38\n\x10\x61verage_duration\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationH\x02\x88\x01\x01\x12\x1f\n\x12\x61verage_turn_count\x18\x04 \x01(\x02H\x03\x88\x01\x01\x12*\n\x1d\x61verage_agent_sentiment_score\x18\x05 \x01(\x02H\x04\x88\x01\x01\x12+\n\x1e\x61verage_client_sentiment_score\x18\x06 \x01(\x02H\x05\x88\x01\x01\x12\x31\n$average_customer_satisfaction_rating\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12(\n\x1b\x61verage_qa_normalized_score\x18\x07 \x01(\x01H\x07\x88\x01\x01\x12\x81\x01\n\rqa_tag_scores\x18\t \x03(\x0b\x32j.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice.DataPoint.ConversationMeasure.QaTagScore\x12\x31\n$average_qa_question_normalized_score\x18\n \x01(\x01H\x08\x88\x01\x01\x1a?\n\nQaTagScore\x12\x0b\n\x03tag\x18\x01 \x01(\t\x12$\n\x1c\x61verage_tag_normalized_score\x18\x02 \x01(\x01\x42\x15\n\x13_conversation_countB\x1d\n\x1b_average_silence_percentageB\x13\n\x11_average_durationB\x15\n\x13_average_turn_countB \n\x1e_average_agent_sentiment_scoreB!\n\x1f_average_client_sentiment_scoreB\'\n%_average_customer_satisfaction_ratingB\x1e\n\x1c_average_qa_normalized_scoreB\'\n%_average_qa_question_normalized_scoreB\t\n\x07measure\x1an\n\nTimeSeries\x12`\n\x0b\x64\x61ta_points\x18\x04 \x03(\x0b\x32K.google.cloud.contactcenterinsights.v1.QueryMetricsResponse.Slice.DataPointB\x16\n\x14_macro_average_slice\"\x16\n\x14QueryMetricsMetadata\"\xd5\x01\n\x17\x43reateQaQuestionRequest\x12P\n\x06parent\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12K\n\x0bqa_question\x18\x02 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.QaQuestionB\x03\xe0\x41\x02\x12\x1b\n\x0eqa_question_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"]\n\x14GetQaQuestionRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/QaQuestion\"\x9b\x01\n\x16ListQaQuestionsRequest\x12P\n\x06parent\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"{\n\x17ListQaQuestionsResponse\x12G\n\x0cqa_questions\x18\x01 \x03(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.QaQuestion\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x9c\x01\n\x17UpdateQaQuestionRequest\x12K\n\x0bqa_question\x18\x01 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.QaQuestionB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"`\n\x17\x44\x65leteQaQuestionRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/QaQuestion\"\xc2\x01\n\x18\x43reateQaScorecardRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12M\n\x0cqa_scorecard\x18\x02 \x01(\x0b\x32\x32.google.cloud.contactcenterinsights.v1.QaScorecardB\x03\xe0\x41\x02\x12\x1c\n\x0fqa_scorecard_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"_\n\x15GetQaScorecardRequest\x12\x46\n\x04name\x18\x01 \x01(\tB8\xe0\x41\x02\xfa\x41\x32\n0contactcenterinsights.googleapis.com/QaScorecard\"\x9f\x01\n\x18UpdateQaScorecardRequest\x12M\n\x0cqa_scorecard\x18\x01 \x01(\x0b\x32\x32.google.cloud.contactcenterinsights.v1.QaScorecardB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"v\n\x18\x44\x65leteQaScorecardRequest\x12\x46\n\x04name\x18\x01 \x01(\tB8\xe0\x41\x02\xfa\x41\x32\n0contactcenterinsights.googleapis.com/QaScorecard\x12\x12\n\x05\x66orce\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\xf3\x01\n CreateQaScorecardRevisionRequest\x12H\n\x06parent\x18\x01 \x01(\tB8\xe0\x41\x02\xfa\x41\x32\n0contactcenterinsights.googleapis.com/QaScorecard\x12^\n\x15qa_scorecard_revision\x18\x02 \x01(\x0b\x32:.google.cloud.contactcenterinsights.v1.QaScorecardRevisionB\x03\xe0\x41\x02\x12%\n\x18qa_scorecard_revision_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"o\n\x1dGetQaScorecardRevisionRequest\x12N\n\x04name\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\"\xa3\x01\n\x1eTuneQaScorecardRevisionRequest\x12P\n\x06parent\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rvalidate_only\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"!\n\x1fTuneQaScorecardRevisionResponse\"\xd3\x08\n\x1fTuneQaScorecardRevisionMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12[\n\x07request\x18\x03 \x01(\x0b\x32\x45.google.cloud.contactcenterinsights.v1.TuneQaScorecardRevisionRequestB\x03\xe0\x41\x03\x12\x9d\x01\n&qa_question_dataset_validation_results\x18\x04 \x03(\x0b\x32h.google.cloud.contactcenterinsights.v1.TuneQaScorecardRevisionMetadata.QaQuestionDatasetValidationResultB\x03\xe0\x41\x03\x12\x96\x01\n\"qa_question_dataset_tuning_metrics\x18\x05 \x03(\x0b\x32\x65.google.cloud.contactcenterinsights.v1.TuneQaScorecardRevisionMetadata.QaQuestionDatasetTuningMetricsB\x03\xe0\x41\x03\x12$\n\x17tuning_completion_ratio\x18\x06 \x01(\x01\x42\x03\xe0\x41\x03\x1a\xf9\x01\n!QaQuestionDatasetValidationResult\x12I\n\x08question\x18\x01 \x01(\tB7\xe0\x41\x03\xfa\x41\x31\n/contactcenterinsights.googleapis.com/QaQuestion\x12\x64\n\x1b\x64\x61taset_validation_warnings\x18\x02 \x03(\x0e\x32?.google.cloud.contactcenterinsights.v1.DatasetValidationWarning\x12#\n\x1bvalid_feedback_labels_count\x18\x03 \x01(\x05\x1a\x8e\x02\n\x1eQaQuestionDatasetTuningMetrics\x12I\n\x08question\x18\x01 \x01(\tB7\xe0\x41\x03\xfa\x41\x31\n/contactcenterinsights.googleapis.com/QaQuestion\x12\x83\x01\n\x07metrics\x18\x02 \x01(\x0b\x32m.google.cloud.contactcenterinsights.v1.TuneQaScorecardRevisionMetadata.QaQuestionDatasetTuningMetrics.MetricsB\x03\xe0\x41\x03\x1a\x1b\n\x07Metrics\x12\x10\n\x08\x61\x63\x63uracy\x18\x01 \x01(\x01\"r\n DeployQaScorecardRevisionRequest\x12N\n\x04name\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\"t\n\"UndeployQaScorecardRevisionRequest\x12N\n\x04name\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\"\x86\x01\n DeleteQaScorecardRevisionRequest\x12N\n\x04name\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12\x12\n\x05\x66orce\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\x85\x01\n\x17ListQaScorecardsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"~\n\x18ListQaScorecardsResponse\x12I\n\rqa_scorecards\x18\x01 \x03(\x0b\x32\x32.google.cloud.contactcenterinsights.v1.QaScorecard\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb1\x01\n\x1fListQaScorecardRevisionsRequest\x12H\n\x06parent\x18\x01 \x01(\tB8\xe0\x41\x02\xfa\x41\x32\n0contactcenterinsights.googleapis.com/QaScorecard\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x97\x01\n ListQaScorecardRevisionsResponse\x12Z\n\x16qa_scorecard_revisions\x18\x01 \x03(\x0b\x32:.google.cloud.contactcenterinsights.v1.QaScorecardRevision\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xda\x01\n\x1a\x43reateFeedbackLabelRequest\x12I\n\x06parent\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x1e\n\x11\x66\x65\x65\x64\x62\x61\x63k_label_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12Q\n\x0e\x66\x65\x65\x64\x62\x61\x63k_label\x18\x03 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.FeedbackLabelB\x03\xe0\x41\x02\"\xac\x01\n\x19ListFeedbackLabelsRequest\x12I\n\x06parent\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tpage_size\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x84\x01\n\x1aListFeedbackLabelsResponse\x12M\n\x0f\x66\x65\x65\x64\x62\x61\x63k_labels\x18\x01 \x03(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.FeedbackLabel\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"c\n\x17GetFeedbackLabelRequest\x12H\n\x04name\x18\x01 \x01(\tB:\xe0\x41\x02\xfa\x41\x34\n2contactcenterinsights.googleapis.com/FeedbackLabel\"\xa5\x01\n\x1aUpdateFeedbackLabelRequest\x12Q\n\x0e\x66\x65\x65\x64\x62\x61\x63k_label\x18\x01 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.FeedbackLabelB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"f\n\x1a\x44\x65leteFeedbackLabelRequest\x12H\n\x04name\x18\x01 \x01(\tB:\xe0\x41\x02\xfa\x41\x34\n2contactcenterinsights.googleapis.com/FeedbackLabel\"\x9f\x01\n\x1cListAllFeedbackLabelsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x87\x01\n\x1dListAllFeedbackLabelsResponse\x12M\n\x0f\x66\x65\x65\x64\x62\x61\x63k_labels\x18\x01 \x03(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.FeedbackLabel\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb4\x03\n\x1f\x42ulkUploadFeedbackLabelsRequest\x12\x66\n\ngcs_source\x18\x02 \x01(\x0b\x32P.google.cloud.contactcenterinsights.v1.BulkUploadFeedbackLabelsRequest.GcsSourceH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x1a\n\rvalidate_only\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x1a\xc7\x01\n\tGcsSource\x12l\n\x06\x66ormat\x18\x01 \x01(\x0e\x32W.google.cloud.contactcenterinsights.v1.BulkUploadFeedbackLabelsRequest.GcsSource.FormatB\x03\xe0\x41\x02\x12\x17\n\nobject_uri\x18\x02 \x01(\tB\x03\xe0\x41\x02\"3\n\x06\x46ormat\x12\x16\n\x12\x46ORMAT_UNSPECIFIED\x10\x00\x12\x07\n\x03\x43SV\x10\x01\x12\x08\n\x04JSON\x10\x02\x42\x08\n\x06source\"\"\n BulkUploadFeedbackLabelsResponse\"\xf6\x03\n BulkUploadFeedbackLabelsMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\\\n\x07request\x18\x03 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.BulkUploadFeedbackLabelsRequestB\x03\xe0\x41\x03\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\x12n\n\x0cupload_stats\x18\x05 \x01(\x0b\x32S.google.cloud.contactcenterinsights.v1.BulkUploadFeedbackLabelsMetadata.UploadStatsB\x03\xe0\x41\x03\x1ao\n\x0bUploadStats\x12\x1e\n\x16processed_object_count\x18\x01 \x01(\x05\x12\x1f\n\x17\x66\x61iled_validation_count\x18\x02 \x01(\x05\x12\x1f\n\x17successful_upload_count\x18\x03 \x01(\x05\"\xfc\x06\n!BulkDownloadFeedbackLabelsRequest\x12r\n\x0fgcs_destination\x18\x03 \x01(\x0b\x32W.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsRequest.GcsDestinationH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1f\n\x12max_download_count\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01\x12|\n\x13\x66\x65\x65\x64\x62\x61\x63k_label_type\x18\x05 \x01(\x0e\x32Z.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsRequest.FeedbackLabelTypeB\x03\xe0\x41\x01\x12 \n\x13\x63onversation_filter\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12%\n\x18template_qa_scorecard_id\x18\x07 \x03(\tB\x03\xe0\x41\x01\x1a\xbd\x02\n\x0eGcsDestination\x12s\n\x06\x66ormat\x18\x01 \x01(\x0e\x32^.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsRequest.GcsDestination.FormatB\x03\xe0\x41\x02\x12\x17\n\nobject_uri\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1b\n\x0e\x61\x64\x64_whitespace\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12&\n\x19\x61lways_print_empty_fields\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12#\n\x16records_per_file_count\x18\x05 \x01(\x03\x42\x03\xe0\x41\x01\"3\n\x06\x46ormat\x12\x16\n\x12\x46ORMAT_UNSPECIFIED\x10\x00\x12\x07\n\x03\x43SV\x10\x01\x12\x08\n\x04JSON\x10\x02\"\\\n\x11\x46\x65\x65\x64\x62\x61\x63kLabelType\x12#\n\x1f\x46\x45\x45\x44\x42\x41\x43K_LABEL_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nQUALITY_AI\x10\x01\x12\x12\n\x0eTOPIC_MODELING\x10\x02\x42\r\n\x0b\x64\x65stination\"$\n\"BulkDownloadFeedbackLabelsResponse\"\x9a\x04\n\"BulkDownloadFeedbackLabelsMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12^\n\x07request\x18\x03 \x01(\x0b\x32H.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsRequestB\x03\xe0\x41\x03\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\x12t\n\x0e\x64ownload_stats\x18\x05 \x01(\x0b\x32W.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsMetadata.DownloadStatsB\x03\xe0\x41\x03\x1a\x88\x01\n\rDownloadStats\x12\x1e\n\x16processed_object_count\x18\x01 \x01(\x05\x12!\n\x19successful_download_count\x18\x02 \x01(\x05\x12\x1b\n\x13total_files_written\x18\x03 \x01(\x05\x12\x17\n\nfile_names\x18\x04 \x03(\tB\x03\xe0\x41\x03*J\n\x10\x43onversationView\x12!\n\x1d\x43ONVERSATION_VIEW_UNSPECIFIED\x10\x00\x12\x08\n\x04\x46ULL\x10\x02\x12\t\n\x05\x42\x41SIC\x10\x01\x32\xc8\x88\x01\n\x15\x43ontactCenterInsights\x12\xfa\x01\n\x12\x43reateConversation\x12@.google.cloud.contactcenterinsights.v1.CreateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"m\xda\x41#parent,conversation,conversation_id\x82\xd3\xe4\x93\x02\x41\"1/v1/{parent=projects/*/locations/*}/conversations:\x0c\x63onversation\x12\xe7\x01\n\x12UploadConversation\x12@.google.cloud.contactcenterinsights.v1.UploadConversationRequest\x1a\x1d.google.longrunning.Operation\"p\xca\x41*\n\x0c\x43onversation\x12\x1aUploadConversationMetadata\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:upload:\x01*\x12\xfc\x01\n\x12UpdateConversation\x12@.google.cloud.contactcenterinsights.v1.UpdateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"o\xda\x41\x18\x63onversation,update_mask\x82\xd3\xe4\x93\x02N2>/v1/{conversation.name=projects/*/locations/*/conversations/*}:\x0c\x63onversation\x12\xc7\x01\n\x0fGetConversation\x12=.google.cloud.contactcenterinsights.v1.GetConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/conversations/*}\x12\xda\x01\n\x11ListConversations\x12?.google.cloud.contactcenterinsights.v1.ListConversationsRequest\x1a@.google.cloud.contactcenterinsights.v1.ListConversationsResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/conversations\x12\xb0\x01\n\x12\x44\x65leteConversation\x12@.google.cloud.contactcenterinsights.v1.DeleteConversationRequest\x1a\x16.google.protobuf.Empty\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/conversations/*}\x12\xfe\x01\n\x0e\x43reateAnalysis\x12<.google.cloud.contactcenterinsights.v1.CreateAnalysisRequest\x1a\x1d.google.longrunning.Operation\"\x8e\x01\xca\x41+\n\x08\x41nalysis\x12\x1f\x43reateAnalysisOperationMetadata\xda\x41\x0fparent,analysis\x82\xd3\xe4\x93\x02H\"</v1/{parent=projects/*/locations/*/conversations/*}/analyses:\x08\x61nalysis\x12\xc6\x01\n\x0bGetAnalysis\x12\x39.google.cloud.contactcenterinsights.v1.GetAnalysisRequest\x1a/.google.cloud.contactcenterinsights.v1.Analysis\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\x12\xd6\x01\n\x0cListAnalyses\x12:.google.cloud.contactcenterinsights.v1.ListAnalysesRequest\x1a;.google.cloud.contactcenterinsights.v1.ListAnalysesResponse\"M\xda\x41\x06parent\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/conversations/*}/analyses\x12\xb3\x01\n\x0e\x44\x65leteAnalysis\x12<.google.cloud.contactcenterinsights.v1.DeleteAnalysisRequest\x1a\x16.google.protobuf.Empty\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>*</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\x12\xb7\x02\n\x18\x42ulkAnalyzeConversations\x12\x46.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest\x1a\x1d.google.longrunning.Operation\"\xb3\x01\xca\x41\x44\n BulkAnalyzeConversationsResponse\x12 BulkAnalyzeConversationsMetadata\xda\x41!parent,filter,analysis_percentage\x82\xd3\xe4\x93\x02\x42\"=/v1/{parent=projects/*/locations/*}/conversations:bulkAnalyze:\x01*\x12\x9e\x02\n\x17\x42ulkDeleteConversations\x12\x45.google.cloud.contactcenterinsights.v1.BulkDeleteConversationsRequest\x1a\x1d.google.longrunning.Operation\"\x9c\x01\xca\x41\x42\n\x1f\x42ulkDeleteConversationsResponse\x12\x1f\x42ulkDeleteConversationsMetadata\xda\x41\rparent,filter\x82\xd3\xe4\x93\x02\x41\"</v1/{parent=projects/*/locations/*}/conversations:bulkDelete:\x01*\x12\x83\x02\n\x13IngestConversations\x12\x41.google.cloud.contactcenterinsights.v1.IngestConversationsRequest\x1a\x1d.google.longrunning.Operation\"\x89\x01\xca\x41:\n\x1bIngestConversationsResponse\x12\x1bIngestConversationsMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:ingest:\x01*\x12\xfe\x01\n\x12\x45xportInsightsData\x12@.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\xca\x41\x38\n\x1a\x45xportInsightsDataResponse\x12\x1a\x45xportInsightsDataMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\"7/v1/{parent=projects/*/locations/*}/insightsdata:export:\x01*\x12\xf6\x01\n\x10\x43reateIssueModel\x12>.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x82\x01\xca\x41&\n\nIssueModel\x12\x18\x43reateIssueModelMetadata\xda\x41\x12parent,issue_model\x82\xd3\xe4\x93\x02>\"//v1/{parent=projects/*/locations/*}/issueModels:\x0bissue_model\x12\xf1\x01\n\x10UpdateIssueModel\x12>.google.cloud.contactcenterinsights.v1.UpdateIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\"j\xda\x41\x17issue_model,update_mask\x82\xd3\xe4\x93\x02J2;/v1/{issue_model.name=projects/*/locations/*/issueModels/*}:\x0bissue_model\x12\xbf\x01\n\rGetIssueModel\x12;.google.cloud.contactcenterinsights.v1.GetIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\">\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31\x12//v1/{name=projects/*/locations/*/issueModels/*}\x12\xd2\x01\n\x0fListIssueModels\x12=.google.cloud.contactcenterinsights.v1.ListIssueModelsRequest\x1a>.google.cloud.contactcenterinsights.v1.ListIssueModelsResponse\"@\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x31\x12//v1/{parent=projects/*/locations/*}/issueModels\x12\xe5\x01\n\x10\x44\x65leteIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest\x1a\x1d.google.longrunning.Operation\"r\xca\x41\x31\n\x15google.protobuf.Empty\x12\x18\x44\x65leteIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31*//v1/{name=projects/*/locations/*/issueModels/*}\x12\xf2\x01\n\x10\x44\x65ployIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x7f\xca\x41\x34\n\x18\x44\x65ployIssueModelResponse\x12\x18\x44\x65ployIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/issueModels/*}:deploy:\x01*\x12\xfd\x01\n\x12UndeployIssueModel\x12@.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x85\x01\xca\x41\x38\n\x1aUndeployIssueModelResponse\x12\x1aUndeployIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02=\"8/v1/{name=projects/*/locations/*/issueModels/*}:undeploy:\x01*\x12\xf2\x01\n\x10\x45xportIssueModel\x12>.google.cloud.contactcenterinsights.v1.ExportIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x7f\xca\x41\x34\n\x18\x45xportIssueModelResponse\x12\x18\x45xportIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/issueModels/*}:export:\x01*\x12\xf5\x01\n\x10ImportIssueModel\x12>.google.cloud.contactcenterinsights.v1.ImportIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x81\x01\xca\x41\x34\n\x18ImportIssueModelResponse\x12\x18ImportIssueModelMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02;\"6/v1/{parent=projects/*/locations/*}/issueModels:import:\x01*\x12\xb9\x01\n\x08GetIssue\x12\x36.google.cloud.contactcenterinsights.v1.GetIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"G\xda\x41\x04name\x82\xd3\xe4\x93\x02:\x12\x38/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\x12\xcc\x01\n\nListIssues\x12\x38.google.cloud.contactcenterinsights.v1.ListIssuesRequest\x1a\x39.google.cloud.contactcenterinsights.v1.ListIssuesResponse\"I\xda\x41\x06parent\x82\xd3\xe4\x93\x02:\x12\x38/v1/{parent=projects/*/locations/*/issueModels/*}/issues\x12\xd9\x01\n\x0bUpdateIssue\x12\x39.google.cloud.contactcenterinsights.v1.UpdateIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"a\xda\x41\x11issue,update_mask\x82\xd3\xe4\x93\x02G2>/v1/{issue.name=projects/*/locations/*/issueModels/*/issues/*}:\x05issue\x12\xa9\x01\n\x0b\x44\x65leteIssue\x12\x39.google.cloud.contactcenterinsights.v1.DeleteIssueRequest\x1a\x16.google.protobuf.Empty\"G\xda\x41\x04name\x82\xd3\xe4\x93\x02:*8/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\x12\x92\x02\n\x18\x43\x61lculateIssueModelStats\x12\x46.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsRequest\x1aG.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsResponse\"e\xda\x41\x0bissue_model\x82\xd3\xe4\x93\x02Q\x12O/v1/{issue_model=projects/*/locations/*/issueModels/*}:calculateIssueModelStats\x12\xf2\x01\n\x13\x43reatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.CreatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"b\xda\x41\x15parent,phrase_matcher\x82\xd3\xe4\x93\x02\x44\"2/v1/{parent=projects/*/locations/*}/phraseMatchers:\x0ephrase_matcher\x12\xcb\x01\n\x10GetPhraseMatcher\x12>.google.cloud.contactcenterinsights.v1.GetPhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{name=projects/*/locations/*/phraseMatchers/*}\x12\xde\x01\n\x12ListPhraseMatchers\x12@.google.cloud.contactcenterinsights.v1.ListPhraseMatchersRequest\x1a\x41.google.cloud.contactcenterinsights.v1.ListPhraseMatchersResponse\"C\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{parent=projects/*/locations/*}/phraseMatchers\x12\xb3\x01\n\x13\x44\x65letePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest\x1a\x16.google.protobuf.Empty\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34*2/v1/{name=projects/*/locations/*/phraseMatchers/*}\x12\x86\x02\n\x13UpdatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.UpdatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"v\xda\x41\x1aphrase_matcher,update_mask\x82\xd3\xe4\x93\x02S2A/v1/{phrase_matcher.name=projects/*/locations/*/phraseMatchers/*}:\x0ephrase_matcher\x12\xc3\x02\n\x0e\x43\x61lculateStats\x12<.google.cloud.contactcenterinsights.v1.CalculateStatsRequest\x1a=.google.cloud.contactcenterinsights.v1.CalculateStatsResponse\"\xb3\x01\xda\x41\x08location\x82\xd3\xe4\x93\x02\xa1\x01\x12\x42/v1/{location=projects/*/locations/*}/conversations:calculateStatsZ[\x12Y/v1/{location=projects/*/locations/*/authorizedViewSet/*/authorizedView/*}:calculateStats\x12\xb4\x01\n\x0bGetSettings\x12\x39.google.cloud.contactcenterinsights.v1.GetSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"9\xda\x41\x04name\x82\xd3\xe4\x93\x02,\x12*/v1/{name=projects/*/locations/*/settings}\x12\xdd\x01\n\x0eUpdateSettings\x12<.google.cloud.contactcenterinsights.v1.UpdateSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"\\\xda\x41\x14settings,update_mask\x82\xd3\xe4\x93\x02?23/v1/{settings.name=projects/*/locations/*/settings}:\x08settings\x12\xec\x01\n\x12\x43reateAnalysisRule\x12@.google.cloud.contactcenterinsights.v1.CreateAnalysisRuleRequest\x1a\x33.google.cloud.contactcenterinsights.v1.AnalysisRule\"_\xda\x41\x14parent,analysis_rule\x82\xd3\xe4\x93\x02\x42\"1/v1/{parent=projects/*/locations/*}/analysisRules:\ranalysis_rule\x12\xc7\x01\n\x0fGetAnalysisRule\x12=.google.cloud.contactcenterinsights.v1.GetAnalysisRuleRequest\x1a\x33.google.cloud.contactcenterinsights.v1.AnalysisRule\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/analysisRules/*}\x12\xda\x01\n\x11ListAnalysisRules\x12?.google.cloud.contactcenterinsights.v1.ListAnalysisRulesRequest\x1a@.google.cloud.contactcenterinsights.v1.ListAnalysisRulesResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/analysisRules\x12\xff\x01\n\x12UpdateAnalysisRule\x12@.google.cloud.contactcenterinsights.v1.UpdateAnalysisRuleRequest\x1a\x33.google.cloud.contactcenterinsights.v1.AnalysisRule\"r\xda\x41\x19\x61nalysis_rule,update_mask\x82\xd3\xe4\x93\x02P2?/v1/{analysis_rule.name=projects/*/locations/*/analysisRules/*}:\ranalysis_rule\x12\xb0\x01\n\x12\x44\x65leteAnalysisRule\x12@.google.cloud.contactcenterinsights.v1.DeleteAnalysisRuleRequest\x1a\x16.google.protobuf.Empty\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/analysisRules/*}\x12\xcc\x01\n\x11GetEncryptionSpec\x12?.google.cloud.contactcenterinsights.v1.GetEncryptionSpecRequest\x1a\x35.google.cloud.contactcenterinsights.v1.EncryptionSpec\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{name=projects/*/locations/*/encryptionSpec}\x12\xb3\x02\n\x18InitializeEncryptionSpec\x12\x46.google.cloud.contactcenterinsights.v1.InitializeEncryptionSpecRequest\x1a\x1d.google.longrunning.Operation\"\xaf\x01\xca\x41\x44\n InitializeEncryptionSpecResponse\x12 InitializeEncryptionSpecMetadata\xda\x41\x0f\x65ncryption_spec\x82\xd3\xe4\x93\x02P\"K/v1/{encryption_spec.name=projects/*/locations/*/encryptionSpec}:initialize:\x01*\x12\xba\x01\n\nCreateView\x12\x38.google.cloud.contactcenterinsights.v1.CreateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"E\xda\x41\x0bparent,view\x82\xd3\xe4\x93\x02\x31\")/v1/{parent=projects/*/locations/*}/views:\x04view\x12\xa7\x01\n\x07GetView\x12\x35.google.cloud.contactcenterinsights.v1.GetViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"8\xda\x41\x04name\x82\xd3\xe4\x93\x02+\x12)/v1/{name=projects/*/locations/*/views/*}\x12\xba\x01\n\tListViews\x12\x37.google.cloud.contactcenterinsights.v1.ListViewsRequest\x1a\x38.google.cloud.contactcenterinsights.v1.ListViewsResponse\":\xda\x41\x06parent\x82\xd3\xe4\x93\x02+\x12)/v1/{parent=projects/*/locations/*}/views\x12\xc4\x01\n\nUpdateView\x12\x38.google.cloud.contactcenterinsights.v1.UpdateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"O\xda\x41\x10view,update_mask\x82\xd3\xe4\x93\x02\x36\x32./v1/{view.name=projects/*/locations/*/views/*}:\x04view\x12\x98\x01\n\nDeleteView\x12\x38.google.cloud.contactcenterinsights.v1.DeleteViewRequest\x1a\x16.google.protobuf.Empty\"8\xda\x41\x04name\x82\xd3\xe4\x93\x02+*)/v1/{name=projects/*/locations/*/views/*}\x12\xb7\x02\n\x0cQueryMetrics\x12:.google.cloud.contactcenterinsights.v1.QueryMetricsRequest\x1a\x1d.google.longrunning.Operation\"\xcb\x01\xca\x41,\n\x14QueryMetricsResponse\x12\x14QueryMetricsMetadata\x82\xd3\xe4\x93\x02\x95\x01\"2/v1/{location=projects/*/locations/*}:queryMetrics:\x01*Z\\\"W/v1/{location=projects/*/locations/*/authorizedViewSet/*/authorizedView/*}:queryMetrics:\x01*\x12\x8c\x02\n\x10\x43reateQaQuestion\x12>.google.cloud.contactcenterinsights.v1.CreateQaQuestionRequest\x1a\x31.google.cloud.contactcenterinsights.v1.QaQuestion\"\x84\x01\xda\x41\"parent,qa_question, qa_question_id\x82\xd3\xe4\x93\x02Y\"J/v1/{parent=projects/*/locations/*/qaScorecards/*/revisions/*}/qaQuestions:\x0bqa_question\x12\xda\x01\n\rGetQaQuestion\x12;.google.cloud.contactcenterinsights.v1.GetQaQuestionRequest\x1a\x31.google.cloud.contactcenterinsights.v1.QaQuestion\"Y\xda\x41\x04name\x82\xd3\xe4\x93\x02L\x12J/v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*/qaQuestions/*}\x12\x8d\x02\n\x10UpdateQaQuestion\x12>.google.cloud.contactcenterinsights.v1.UpdateQaQuestionRequest\x1a\x31.google.cloud.contactcenterinsights.v1.QaQuestion\"\x85\x01\xda\x41\x17qa_question,update_mask\x82\xd3\xe4\x93\x02\x65\x32V/v1/{qa_question.name=projects/*/locations/*/qaScorecards/*/revisions/*/qaQuestions/*}:\x0bqa_question\x12\xc5\x01\n\x10\x44\x65leteQaQuestion\x12>.google.cloud.contactcenterinsights.v1.DeleteQaQuestionRequest\x1a\x16.google.protobuf.Empty\"Y\xda\x41\x04name\x82\xd3\xe4\x93\x02L*J/v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*/qaQuestions/*}\x12\xed\x01\n\x0fListQaQuestions\x12=.google.cloud.contactcenterinsights.v1.ListQaQuestionsRequest\x1a>.google.cloud.contactcenterinsights.v1.ListQaQuestionsResponse\"[\xda\x41\x06parent\x82\xd3\xe4\x93\x02L\x12J/v1/{parent=projects/*/locations/*/qaScorecards/*/revisions/*}/qaQuestions\x12\xf6\x01\n\x11\x43reateQaScorecard\x12?.google.cloud.contactcenterinsights.v1.CreateQaScorecardRequest\x1a\x32.google.cloud.contactcenterinsights.v1.QaScorecard\"l\xda\x41#parent,qa_scorecard,qa_scorecard_id\x82\xd3\xe4\x93\x02@\"0/v1/{parent=projects/*/locations/*}/qaScorecards:\x0cqa_scorecard\x12\xc3\x01\n\x0eGetQaScorecard\x12<.google.cloud.contactcenterinsights.v1.GetQaScorecardRequest\x1a\x32.google.cloud.contactcenterinsights.v1.QaScorecard\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{name=projects/*/locations/*/qaScorecards/*}\x12\xf8\x01\n\x11UpdateQaScorecard\x12?.google.cloud.contactcenterinsights.v1.UpdateQaScorecardRequest\x1a\x32.google.cloud.contactcenterinsights.v1.QaScorecard\"n\xda\x41\x18qa_scorecard,update_mask\x82\xd3\xe4\x93\x02M2=/v1/{qa_scorecard.name=projects/*/locations/*/qaScorecards/*}:\x0cqa_scorecard\x12\xad\x01\n\x11\x44\x65leteQaScorecard\x12?.google.cloud.contactcenterinsights.v1.DeleteQaScorecardRequest\x1a\x16.google.protobuf.Empty\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32*0/v1/{name=projects/*/locations/*/qaScorecards/*}\x12\xd6\x01\n\x10ListQaScorecards\x12>.google.cloud.contactcenterinsights.v1.ListQaScorecardsRequest\x1a?.google.cloud.contactcenterinsights.v1.ListQaScorecardsResponse\"A\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{parent=projects/*/locations/*}/qaScorecards\x12\xb6\x02\n\x19\x43reateQaScorecardRevision\x12G.google.cloud.contactcenterinsights.v1.CreateQaScorecardRevisionRequest\x1a:.google.cloud.contactcenterinsights.v1.QaScorecardRevision\"\x93\x01\xda\x41\x35parent,qa_scorecard_revision,qa_scorecard_revision_id\x82\xd3\xe4\x93\x02U\"</v1/{parent=projects/*/locations/*/qaScorecards/*}/revisions:\x15qa_scorecard_revision\x12\xe7\x01\n\x16GetQaScorecardRevision\x12\x44.google.cloud.contactcenterinsights.v1.GetQaScorecardRevisionRequest\x1a:.google.cloud.contactcenterinsights.v1.QaScorecardRevision\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*}\x12\xc6\x02\n\x17TuneQaScorecardRevision\x12\x45.google.cloud.contactcenterinsights.v1.TuneQaScorecardRevisionRequest\x1a\x1d.google.longrunning.Operation\"\xc4\x01\xca\x41\x42\n\x1fTuneQaScorecardRevisionResponse\x12\x1fTuneQaScorecardRevisionMetadata\xda\x41\x1bparent,filter,validate_only\x82\xd3\xe4\x93\x02[\"V/v1/{parent=projects/*/locations/*/qaScorecards/*/revisions/*}:tuneQaScorecardRevision:\x01*\x12\xf0\x01\n\x19\x44\x65ployQaScorecardRevision\x12G.google.cloud.contactcenterinsights.v1.DeployQaScorecardRevisionRequest\x1a:.google.cloud.contactcenterinsights.v1.QaScorecardRevision\"N\x82\xd3\xe4\x93\x02H\"C/v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*}:deploy:\x01*\x12\xf6\x01\n\x1bUndeployQaScorecardRevision\x12I.google.cloud.contactcenterinsights.v1.UndeployQaScorecardRevisionRequest\x1a:.google.cloud.contactcenterinsights.v1.QaScorecardRevision\"P\x82\xd3\xe4\x93\x02J\"E/v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*}:undeploy:\x01*\x12\xc9\x01\n\x19\x44\x65leteQaScorecardRevision\x12G.google.cloud.contactcenterinsights.v1.DeleteQaScorecardRevisionRequest\x1a\x16.google.protobuf.Empty\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>*</v1/{name=projects/*/locations/*/qaScorecards/*/revisions/*}\x12\xfa\x01\n\x18ListQaScorecardRevisions\x12\x46.google.cloud.contactcenterinsights.v1.ListQaScorecardRevisionsRequest\x1aG.google.cloud.contactcenterinsights.v1.ListQaScorecardRevisionsResponse\"M\xda\x41\x06parent\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/qaScorecards/*}/revisions\x12\x95\x02\n\x13\x43reateFeedbackLabel\x12\x41.google.cloud.contactcenterinsights.v1.CreateFeedbackLabelRequest\x1a\x34.google.cloud.contactcenterinsights.v1.FeedbackLabel\"\x84\x01\xda\x41\'parent,feedback_label,feedback_label_id\x82\xd3\xe4\x93\x02T\"B/v1/{parent=projects/*/locations/*/conversations/*}/feedbackLabels:\x0e\x66\x65\x65\x64\x62\x61\x63k_label\x12\xee\x01\n\x12ListFeedbackLabels\x12@.google.cloud.contactcenterinsights.v1.ListFeedbackLabelsRequest\x1a\x41.google.cloud.contactcenterinsights.v1.ListFeedbackLabelsResponse\"S\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{parent=projects/*/locations/*/conversations/*}/feedbackLabels\x12\xdb\x01\n\x10GetFeedbackLabel\x12>.google.cloud.contactcenterinsights.v1.GetFeedbackLabelRequest\x1a\x34.google.cloud.contactcenterinsights.v1.FeedbackLabel\"Q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{name=projects/*/locations/*/conversations/*/feedbackLabels/*}\x12\x97\x02\n\x13UpdateFeedbackLabel\x12\x41.google.cloud.contactcenterinsights.v1.UpdateFeedbackLabelRequest\x1a\x34.google.cloud.contactcenterinsights.v1.FeedbackLabel\"\x86\x01\xda\x41\x1a\x66\x65\x65\x64\x62\x61\x63k_label,update_mask\x82\xd3\xe4\x93\x02\x63\x32Q/v1/{feedback_label.name=projects/*/locations/*/conversations/*/feedbackLabels/*}:\x0e\x66\x65\x65\x64\x62\x61\x63k_label\x12\xc3\x01\n\x13\x44\x65leteFeedbackLabel\x12\x41.google.cloud.contactcenterinsights.v1.DeleteFeedbackLabelRequest\x1a\x16.google.protobuf.Empty\"Q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44*B/v1/{name=projects/*/locations/*/conversations/*/feedbackLabels/*}\x12\xee\x01\n\x15ListAllFeedbackLabels\x12\x43.google.cloud.contactcenterinsights.v1.ListAllFeedbackLabelsRequest\x1a\x44.google.cloud.contactcenterinsights.v1.ListAllFeedbackLabelsResponse\"J\xda\x41\x06parent\x82\xd3\xe4\x93\x02;\x12\x39/v1/{parent=projects/*/locations/*}:listAllFeedbackLabels\x12\x9b\x02\n\x18\x42ulkUploadFeedbackLabels\x12\x46.google.cloud.contactcenterinsights.v1.BulkUploadFeedbackLabelsRequest\x1a\x1d.google.longrunning.Operation\"\x97\x01\xca\x41\x44\n BulkUploadFeedbackLabelsResponse\x12 BulkUploadFeedbackLabelsMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x41\"</v1/{parent=projects/*/locations/*}:bulkUploadFeedbackLabels:\x01*\x12\xa5\x02\n\x1a\x42ulkDownloadFeedbackLabels\x12H.google.cloud.contactcenterinsights.v1.BulkDownloadFeedbackLabelsRequest\x1a\x1d.google.longrunning.Operation\"\x9d\x01\xca\x41H\n\"BulkDownloadFeedbackLabelsResponse\x12\"BulkDownloadFeedbackLabelsMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x43\">/v1/{parent=projects/*/locations/*}:bulkDownloadFeedbackLabels:\x01*\x1aX\xca\x41$contactcenterinsights.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xa5\x02\n)com.google.cloud.contactcenterinsights.v1B\x1a\x43ontactCenterInsightsProtoP\x01Z_cloud.google.com/go/contactcenterinsights/apiv1/contactcenterinsightspb;contactcenterinsightspb\xaa\x02%Google.Cloud.ContactCenterInsights.V1\xca\x02%Google\\Cloud\\ContactCenterInsights\\V1\xea\x02(Google::Cloud::ContactCenterInsights::V1b\x06proto3"
|
22
22
|
|
23
23
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
24
24
|
|
@@ -10,7 +10,7 @@ require 'google/protobuf/duration_pb'
|
|
10
10
|
require 'google/protobuf/timestamp_pb'
|
11
11
|
|
12
12
|
|
13
|
-
descriptor_data = "\n5google/cloud/contactcenterinsights/v1/resources.proto\x12%google.cloud.contactcenterinsights.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xf7\x17\n\x0c\x43onversation\x12Y\n\rcall_metadata\x18\x07 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.Conversation.CallMetadataH\x00\x12\x31\n\x0b\x65xpire_time\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x12-\n\x03ttl\x18\x10 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x04H\x01\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12R\n\x0b\x64\x61ta_source\x18\x02 \x01(\x0b\x32=.google.cloud.contactcenterinsights.v1.ConversationDataSource\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12.\n\nstart_time\x18\x11 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x15\n\rlanguage_code\x18\x0e \x01(\t\x12\x10\n\x08\x61gent_id\x18\x05 \x01(\t\x12O\n\x06labels\x18\x06 \x03(\x0b\x32?.google.cloud.contactcenterinsights.v1.Conversation.LabelsEntry\x12]\n\x10quality_metadata\x18\x18 \x01(\x0b\x32\x43.google.cloud.contactcenterinsights.v1.Conversation.QualityMetadata\x12\x1a\n\rmetadata_json\x18\x19 \x01(\tB\x03\xe0\x41\x04\x12W\n\ntranscript\x18\x08 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.Conversation.TranscriptB\x03\xe0\x41\x03\x12O\n\x06medium\x18\t \x01(\x0e\x32:.google.cloud.contactcenterinsights.v1.Conversation.MediumB\x03\xe0\x41\x05\x12\x30\n\x08\x64uration\x18\n \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x03\x12\x17\n\nturn_count\x18\x0b \x01(\x05\x42\x03\xe0\x41\x03\x12M\n\x0flatest_analysis\x18\x0c \x01(\x0b\x32/.google.cloud.contactcenterinsights.v1.AnalysisB\x03\xe0\x41\x03\x12k\n\x0elatest_summary\x18\x14 \x01(\x0b\x32N.google.cloud.contactcenterinsights.v1.ConversationSummarizationSuggestionDataB\x03\xe0\x41\x03\x12Z\n\x13runtime_annotations\x18\r \x03(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.RuntimeAnnotationB\x03\xe0\x41\x03\x12k\n\x12\x64ialogflow_intents\x18\x12 \x03(\x0b\x32J.google.cloud.contactcenterinsights.v1.Conversation.DialogflowIntentsEntryB\x03\xe0\x41\x03\x12\x1a\n\x12obfuscated_user_id\x18\x15 \x01(\t\x1a?\n\x0c\x43\x61llMetadata\x12\x18\n\x10\x63ustomer_channel\x18\x01 \x01(\x05\x12\x15\n\ragent_channel\x18\x02 \x01(\x05\x1a\xbc\x02\n\x0fQualityMetadata\x12$\n\x1c\x63ustomer_satisfaction_rating\x18\x01 \x01(\x05\x12\x30\n\rwait_duration\x18\x02 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x11\n\tmenu_path\x18\x03 \x01(\t\x12\x61\n\nagent_info\x18\x04 \x03(\x0b\x32M.google.cloud.contactcenterinsights.v1.Conversation.QualityMetadata.AgentInfo\x1a[\n\tAgentInfo\x12\x10\n\x08\x61gent_id\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x0c\n\x04team\x18\x03 \x01(\t\x12\x18\n\x10\x64isposition_code\x18\x04 \x01(\t\x1a\x86\x07\n\nTranscript\x12m\n\x13transcript_segments\x18\x01 \x03(\x0b\x32P.google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment\x1a\x88\x06\n\x11TranscriptSegment\x12\x30\n\x0cmessage_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0c\n\x04text\x18\x01 \x01(\t\x12\x12\n\nconfidence\x18\x02 \x01(\x02\x12h\n\x05words\x18\x03 \x03(\x0b\x32Y.google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment.WordInfo\x12\x15\n\rlanguage_code\x18\x04 \x01(\t\x12\x13\n\x0b\x63hannel_tag\x18\x05 \x01(\x05\x12[\n\x13segment_participant\x18\t \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.ConversationParticipant\x12\x8f\x01\n\x1b\x64ialogflow_segment_metadata\x18\n \x01(\x0b\x32j.google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment.DialogflowSegmentMetadata\x12G\n\tsentiment\x18\x0b \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.SentimentData\x1a\x8c\x01\n\x08WordInfo\x12/\n\x0cstart_offset\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12-\n\nend_offset\x18\x02 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x0c\n\x04word\x18\x03 \x01(\t\x12\x12\n\nconfidence\x18\x04 \x01(\x02\x1a\x42\n\x19\x44ialogflowSegmentMetadata\x12%\n\x1dsmart_reply_allowlist_covered\x18\x01 \x01(\x08\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aq\n\x16\x44ialogflowIntentsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x46\n\x05value\x18\x02 \x01(\x0b\x32\x37.google.cloud.contactcenterinsights.v1.DialogflowIntent:\x02\x38\x01\":\n\x06Medium\x12\x16\n\x12MEDIUM_UNSPECIFIED\x10\x00\x12\x0e\n\nPHONE_CALL\x10\x01\x12\x08\n\x04\x43HAT\x10\x02:\x9a\x01\xea\x41\x96\x01\n1contactcenterinsights.googleapis.com/Conversation\x12\x44projects/{project}/locations/{location}/conversations/{conversation}*\rconversations2\x0c\x63onversationB\n\n\x08metadataB\x0c\n\nexpiration\"\xd9\x03\n\x08\x41nalysis\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x35\n\x0crequest_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12S\n\x0f\x61nalysis_result\x18\x07 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.AnalysisResultB\x03\xe0\x41\x03\x12T\n\x12\x61nnotator_selector\x18\x08 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelector:\xa1\x01\xea\x41\x9d\x01\n-contactcenterinsights.googleapis.com/Analysis\x12Xprojects/{project}/locations/{location}/conversations/{conversation}/analyses/{analysis}*\x08\x61nalyses2\x08\x61nalysis\"\xc0\x01\n\x16\x43onversationDataSource\x12\x46\n\ngcs_source\x18\x01 \x01(\x0b\x32\x30.google.cloud.contactcenterinsights.v1.GcsSourceH\x00\x12T\n\x11\x64ialogflow_source\x18\x03 \x01(\x0b\x32\x37.google.cloud.contactcenterinsights.v1.DialogflowSourceH\x00\x42\x08\n\x06source\";\n\tGcsSource\x12\x11\n\taudio_uri\x18\x01 \x01(\t\x12\x1b\n\x0etranscript_uri\x18\x02 \x01(\tB\x03\xe0\x41\x05\"K\n\x10\x44ialogflowSource\x12$\n\x17\x64ialogflow_conversation\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\taudio_uri\x18\x03 \x01(\t\"\xf0\t\n\x0e\x41nalysisResult\x12l\n\x16\x63\x61ll_analysis_metadata\x18\x02 \x01(\x0b\x32J.google.cloud.contactcenterinsights.v1.AnalysisResult.CallAnalysisMetadataH\x00\x12,\n\x08\x65nd_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x1a\xb5\x08\n\x14\x43\x61llAnalysisMetadata\x12J\n\x0b\x61nnotations\x18\x02 \x03(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.CallAnnotation\x12j\n\x08\x65ntities\x18\x03 \x03(\x0b\x32X.google.cloud.contactcenterinsights.v1.AnalysisResult.CallAnalysisMetadata.EntitiesEntry\x12U\n\nsentiments\x18\x04 \x03(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.ConversationLevelSentiment\x12P\n\x07silence\x18\x0b \x01(\x0b\x32?.google.cloud.contactcenterinsights.v1.ConversationLevelSilence\x12h\n\x07intents\x18\x06 \x03(\x0b\x32W.google.cloud.contactcenterinsights.v1.AnalysisResult.CallAnalysisMetadata.IntentsEntry\x12w\n\x0fphrase_matchers\x18\x07 \x03(\x0b\x32^.google.cloud.contactcenterinsights.v1.AnalysisResult.CallAnalysisMetadata.PhraseMatchersEntry\x12S\n\x12issue_model_result\x18\x08 \x01(\x0b\x32\x37.google.cloud.contactcenterinsights.v1.IssueModelResult\x12V\n\x14qa_scorecard_results\x18\n \x03(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.QaScorecardResult\x1a^\n\rEntitiesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12<\n\x05value\x18\x02 \x01(\x0b\x32-.google.cloud.contactcenterinsights.v1.Entity:\x02\x38\x01\x1a]\n\x0cIntentsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12<\n\x05value\x18\x02 \x01(\x0b\x32-.google.cloud.contactcenterinsights.v1.Intent:\x02\x38\x01\x1am\n\x13PhraseMatchersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x45\n\x05value\x18\x02 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.PhraseMatchData:\x02\x38\x01\x42\n\n\x08metadata\"\xa5\x01\n\x10IssueModelResult\x12I\n\x0bissue_model\x18\x01 \x01(\tB4\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\x12\x46\n\x06issues\x18\x02 \x03(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.IssueAssignment\"\xdf\x03\n\rFeedbackLabel\x12\x0f\n\x05label\x18\x04 \x01(\tH\x00\x12V\n\x0fqa_answer_label\x18\x07 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.QaAnswer.AnswerValueH\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x18\n\x10labeled_resource\x18\x03 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03:\xbd\x01\xea\x41\xb9\x01\n2contactcenterinsights.googleapis.com/FeedbackLabel\x12\x64projects/{project}/locations/{location}/conversations/{conversation}/feedbackLabels/{feedback_label}*\x0e\x66\x65\x65\x64\x62\x61\x63kLabels2\rfeedbackLabelB\x0c\n\nlabel_type\"\x7f\n\x1a\x43onversationLevelSentiment\x12\x13\n\x0b\x63hannel_tag\x18\x01 \x01(\x05\x12L\n\x0esentiment_data\x18\x02 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.SentimentData\"k\n\x18\x43onversationLevelSilence\x12\x33\n\x10silence_duration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x1a\n\x12silence_percentage\x18\x02 \x01(\x02\"J\n\x0fIssueAssignment\x12\r\n\x05issue\x18\x01 \x01(\t\x12\r\n\x05score\x18\x02 \x01(\x01\x12\x19\n\x0c\x64isplay_name\x18\x03 \x01(\tB\x03\xe0\x41\x05\"\xf5\x06\n\x0e\x43\x61llAnnotation\x12T\n\x11interruption_data\x18\n \x01(\x0b\x32\x37.google.cloud.contactcenterinsights.v1.InterruptionDataH\x00\x12N\n\x0esentiment_data\x18\x0b \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.SentimentDataH\x00\x12J\n\x0csilence_data\x18\x0c \x01(\x0b\x32\x32.google.cloud.contactcenterinsights.v1.SilenceDataH\x00\x12\x44\n\thold_data\x18\r \x01(\x0b\x32/.google.cloud.contactcenterinsights.v1.HoldDataH\x00\x12W\n\x13\x65ntity_mention_data\x18\x0f \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.EntityMentionDataH\x00\x12S\n\x11intent_match_data\x18\x10 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.IntentMatchDataH\x00\x12S\n\x11phrase_match_data\x18\x11 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.PhraseMatchDataH\x00\x12Q\n\x10issue_match_data\x18\x12 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.IssueMatchDataH\x00\x12\x13\n\x0b\x63hannel_tag\x18\x01 \x01(\x05\x12\\\n\x19\x61nnotation_start_boundary\x18\x04 \x01(\x0b\x32\x39.google.cloud.contactcenterinsights.v1.AnnotationBoundary\x12Z\n\x17\x61nnotation_end_boundary\x18\x05 \x01(\x0b\x32\x39.google.cloud.contactcenterinsights.v1.AnnotationBoundaryB\x06\n\x04\x64\x61ta\"Y\n\x12\x41nnotationBoundary\x12\x14\n\nword_index\x18\x03 \x01(\x05H\x00\x12\x18\n\x10transcript_index\x18\x01 \x01(\x05\x42\x13\n\x11\x64\x65tailed_boundary\"\x80\x04\n\x06\x45ntity\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12@\n\x04type\x18\x02 \x01(\x0e\x32\x32.google.cloud.contactcenterinsights.v1.Entity.Type\x12M\n\x08metadata\x18\x03 \x03(\x0b\x32;.google.cloud.contactcenterinsights.v1.Entity.MetadataEntry\x12\x10\n\x08salience\x18\x04 \x01(\x02\x12G\n\tsentiment\x18\x05 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.SentimentData\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xc2\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06PERSON\x10\x01\x12\x0c\n\x08LOCATION\x10\x02\x12\x10\n\x0cORGANIZATION\x10\x03\x12\t\n\x05\x45VENT\x10\x04\x12\x0f\n\x0bWORK_OF_ART\x10\x05\x12\x11\n\rCONSUMER_GOOD\x10\x06\x12\t\n\x05OTHER\x10\x07\x12\x10\n\x0cPHONE_NUMBER\x10\t\x12\x0b\n\x07\x41\x44\x44RESS\x10\n\x12\x08\n\x04\x44\x41TE\x10\x0b\x12\n\n\x06NUMBER\x10\x0c\x12\t\n\x05PRICE\x10\r\"*\n\x06Intent\x12\n\n\x02id\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\"?\n\x0fPhraseMatchData\x12\x16\n\x0ephrase_matcher\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\"(\n\x10\x44ialogflowIntent\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\"\x12\n\x10InterruptionData\"\r\n\x0bSilenceData\"\n\n\x08HoldData\"\x8f\x02\n\x11\x45ntityMentionData\x12\x18\n\x10\x65ntity_unique_id\x18\x01 \x01(\t\x12R\n\x04type\x18\x02 \x01(\x0e\x32\x44.google.cloud.contactcenterinsights.v1.EntityMentionData.MentionType\x12G\n\tsentiment\x18\x03 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.SentimentData\"C\n\x0bMentionType\x12\x1c\n\x18MENTION_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06PROPER\x10\x01\x12\n\n\x06\x43OMMON\x10\x02\"+\n\x0fIntentMatchData\x12\x18\n\x10intent_unique_id\x18\x01 \x01(\t\"1\n\rSentimentData\x12\x11\n\tmagnitude\x18\x01 \x01(\x02\x12\r\n\x05score\x18\x02 \x01(\x02\"b\n\x0eIssueMatchData\x12P\n\x10issue_assignment\x18\x01 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.IssueAssignment\"\xf2\x07\n\nIssueModel\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x18\n\x0bissue_count\x18\x08 \x01(\x03\x42\x03\xe0\x41\x03\x12K\n\x05state\x18\x05 \x01(\x0e\x32\x37.google.cloud.contactcenterinsights.v1.IssueModel.StateB\x03\xe0\x41\x03\x12\\\n\x11input_data_config\x18\x06 \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.IssueModel.InputDataConfig\x12[\n\x0etraining_stats\x18\x07 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.IssueModelLabelStatsB\x06\xe0\x41\x03\xe0\x41\x05\x12O\n\nmodel_type\x18\t \x01(\x0e\x32;.google.cloud.contactcenterinsights.v1.IssueModel.ModelType\x12\x15\n\rlanguage_code\x18\n \x01(\t\x1a\x9c\x01\n\x0fInputDataConfig\x12N\n\x06medium\x18\x01 \x01(\x0e\x32:.google.cloud.contactcenterinsights.v1.Conversation.MediumB\x02\x18\x01\x12)\n\x1ctraining_conversations_count\x18\x02 \x01(\x03\x42\x03\xe0\x41\x03\x12\x0e\n\x06\x66ilter\x18\x03 \x01(\t\"j\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0e\n\nUNDEPLOYED\x10\x01\x12\r\n\tDEPLOYING\x10\x02\x12\x0c\n\x08\x44\x45PLOYED\x10\x03\x12\x0f\n\x0bUNDEPLOYING\x10\x04\x12\x0c\n\x08\x44\x45LETING\x10\x05\"A\n\tModelType\x12\x1a\n\x16MODEL_TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07TYPE_V1\x10\x01\x12\x0b\n\x07TYPE_V2\x10\x02:w\xea\x41t\n/contactcenterinsights.googleapis.com/IssueModel\x12\x41projects/{project}/locations/{location}/issueModels/{issue_model}\"\xdd\x02\n\x05Issue\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x1e\n\x11sample_utterances\x18\x06 \x03(\tB\x03\xe0\x41\x03\x12\x1b\n\x13\x64isplay_description\x18\x0e \x01(\t:\x81\x01\xea\x41~\n*contactcenterinsights.googleapis.com/Issue\x12Pprojects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}\"\x9b\x03\n\x14IssueModelLabelStats\x12$\n\x1c\x61nalyzed_conversations_count\x18\x01 \x01(\x03\x12(\n unclassified_conversations_count\x18\x02 \x01(\x03\x12`\n\x0bissue_stats\x18\x03 \x03(\x0b\x32K.google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStatsEntry\x1aV\n\nIssueStats\x12\r\n\x05issue\x18\x01 \x01(\t\x12#\n\x1blabeled_conversations_count\x18\x02 \x01(\x03\x12\x14\n\x0c\x64isplay_name\x18\x03 \x01(\t\x1ay\n\x0fIssueStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12U\n\x05value\x18\x02 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats:\x02\x38\x01\"\x93\x06\n\rPhraseMatcher\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1b\n\x0brevision_id\x18\x02 \x01(\tB\x06\xe0\x41\x05\xe0\x41\x03\x12\x13\n\x0bversion_tag\x18\x03 \x01(\t\x12=\n\x14revision_create_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x14\n\x0c\x64isplay_name\x18\x05 \x01(\t\x12Y\n\x04type\x18\x06 \x01(\x0e\x32\x46.google.cloud.contactcenterinsights.v1.PhraseMatcher.PhraseMatcherTypeB\x03\xe0\x41\x02\x12\x0e\n\x06\x61\x63tive\x18\x07 \x01(\x08\x12]\n\x18phrase_match_rule_groups\x18\x08 \x03(\x0b\x32;.google.cloud.contactcenterinsights.v1.PhraseMatchRuleGroup\x12?\n\x16\x61\x63tivation_update_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12W\n\nrole_match\x18\n \x01(\x0e\x32\x43.google.cloud.contactcenterinsights.v1.ConversationParticipant.Role\x12\x34\n\x0bupdate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"P\n\x11PhraseMatcherType\x12#\n\x1fPHRASE_MATCHER_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06\x41LL_OF\x10\x01\x12\n\n\x06\x41NY_OF\x10\x02:\x80\x01\xea\x41}\n2contactcenterinsights.googleapis.com/PhraseMatcher\x12Gprojects/{project}/locations/{location}/phraseMatchers/{phrase_matcher}\"\xb5\x02\n\x14PhraseMatchRuleGroup\x12g\n\x04type\x18\x01 \x01(\x0e\x32T.google.cloud.contactcenterinsights.v1.PhraseMatchRuleGroup.PhraseMatchRuleGroupTypeB\x03\xe0\x41\x02\x12R\n\x12phrase_match_rules\x18\x02 \x03(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.PhraseMatchRule\"`\n\x18PhraseMatchRuleGroupType\x12,\n(PHRASE_MATCH_RULE_GROUP_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06\x41LL_OF\x10\x01\x12\n\n\x06\x41NY_OF\x10\x02\"\x84\x01\n\x0fPhraseMatchRule\x12\x12\n\x05query\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x0f\n\x07negated\x18\x02 \x01(\x08\x12L\n\x06\x63onfig\x18\x03 \x01(\x0b\x32<.google.cloud.contactcenterinsights.v1.PhraseMatchRuleConfig\"x\n\x15PhraseMatchRuleConfig\x12U\n\x12\x65xact_match_config\x18\x01 \x01(\x0b\x32\x37.google.cloud.contactcenterinsights.v1.ExactMatchConfigH\x00\x42\x08\n\x06\x63onfig\"*\n\x10\x45xactMatchConfig\x12\x16\n\x0e\x63\x61se_sensitive\x18\x01 \x01(\x08\"\xbc\x07\n\x08Settings\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x15\n\rlanguage_code\x18\x04 \x01(\t\x12\x33\n\x10\x63onversation_ttl\x18\x05 \x01(\x0b\x32\x19.google.protobuf.Duration\x12u\n\x1cpubsub_notification_settings\x18\x06 \x03(\x0b\x32O.google.cloud.contactcenterinsights.v1.Settings.PubsubNotificationSettingsEntry\x12W\n\x0f\x61nalysis_config\x18\x07 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.Settings.AnalysisConfig\x12P\n\x10redaction_config\x18\n \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.RedactionConfig\x12O\n\rspeech_config\x18\x0b \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.SpeechConfigB\x03\xe0\x41\x01\x1a\xc8\x01\n\x0e\x41nalysisConfig\x12/\n\'runtime_integration_analysis_percentage\x18\x01 \x01(\x01\x12/\n\'upload_conversation_analysis_percentage\x18\x06 \x01(\x01\x12T\n\x12\x61nnotator_selector\x18\x05 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelector\x1a\x41\n\x1fPubsubNotificationSettingsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:d\xea\x41\x61\n-contactcenterinsights.googleapis.com/Settings\x12\x30projects/{project}/locations/{location}/settings\"\xf7\x03\n\x0c\x41nalysisRule\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\x04 \x01(\tH\x00\x88\x01\x01\x12\x1b\n\x13\x63onversation_filter\x18\x05 \x01(\t\x12T\n\x12\x61nnotator_selector\x18\x06 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelector\x12\x1b\n\x13\x61nalysis_percentage\x18\x07 \x01(\x01\x12\x0e\n\x06\x61\x63tive\x18\x08 \x01(\x08:\x9b\x01\xea\x41\x97\x01\n1contactcenterinsights.googleapis.com/AnalysisRule\x12\x45projects/{project}/locations/{location}/analysisRules/{analysis_rule}*\ranalysisRules2\x0c\x61nalysisRuleB\x0f\n\r_display_name\"\xab\x01\n\x0e\x45ncryptionSpec\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x14\n\x07kms_key\x18\x02 \x01(\tB\x03\xe0\x41\x02:p\xea\x41m\n3contactcenterinsights.googleapis.com/EncryptionSpec\x12\x36projects/{project}/locations/{location}/encryptionSpec\"H\n\x0fRedactionConfig\x12\x1b\n\x13\x64\x65identify_template\x18\x01 \x01(\t\x12\x18\n\x10inspect_template\x18\x02 \x01(\t\"P\n\x0cSpeechConfig\x12@\n\x11speech_recognizer\x18\x01 \x01(\tB%\xfa\x41\"\n speech.googleapis.com/Recognizer\"\xdf\t\n\x11RuntimeAnnotation\x12Z\n\x12\x61rticle_suggestion\x18\x06 \x01(\x0b\x32<.google.cloud.contactcenterinsights.v1.ArticleSuggestionDataH\x00\x12J\n\nfaq_answer\x18\x07 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.FaqAnswerDataH\x00\x12L\n\x0bsmart_reply\x18\x08 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.SmartReplyDataH\x00\x12\x65\n\x18smart_compose_suggestion\x18\t \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.SmartComposeSuggestionDataH\x00\x12\x62\n\x16\x64ialogflow_interaction\x18\n \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.DialogflowInteractionDataH\x00\x12\x7f\n%conversation_summarization_suggestion\x18\x0c \x01(\x0b\x32N.google.cloud.contactcenterinsights.v1.ConversationSummarizationSuggestionDataH\x00\x12\x15\n\rannotation_id\x18\x01 \x01(\t\x12/\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12Q\n\x0estart_boundary\x18\x03 \x01(\x0b\x32\x39.google.cloud.contactcenterinsights.v1.AnnotationBoundary\x12O\n\x0c\x65nd_boundary\x18\x04 \x01(\x0b\x32\x39.google.cloud.contactcenterinsights.v1.AnnotationBoundary\x12N\n\x0f\x61nswer_feedback\x18\x05 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.AnswerFeedback\x12V\n\nuser_input\x18\x10 \x01(\x0b\x32\x42.google.cloud.contactcenterinsights.v1.RuntimeAnnotation.UserInput\x1a\xeb\x01\n\tUserInput\x12\r\n\x05query\x18\x01 \x01(\t\x12\x16\n\x0egenerator_name\x18\x02 \x01(\t\x12\x64\n\x0cquery_source\x18\x03 \x01(\x0e\x32N.google.cloud.contactcenterinsights.v1.RuntimeAnnotation.UserInput.QuerySource\"Q\n\x0bQuerySource\x12\x1c\n\x18QUERY_SOURCE_UNSPECIFIED\x10\x00\x12\x0f\n\x0b\x41GENT_QUERY\x10\x01\x12\x13\n\x0fSUGGESTED_QUERY\x10\x02\x42\x06\n\x04\x64\x61ta\"\x89\x02\n\x0e\x41nswerFeedback\x12\x61\n\x11\x63orrectness_level\x18\x01 \x01(\x0e\x32\x46.google.cloud.contactcenterinsights.v1.AnswerFeedback.CorrectnessLevel\x12\x0f\n\x07\x63licked\x18\x02 \x01(\x08\x12\x11\n\tdisplayed\x18\x03 \x01(\x08\"p\n\x10\x43orrectnessLevel\x12!\n\x1d\x43ORRECTNESS_LEVEL_UNSPECIFIED\x10\x00\x12\x0f\n\x0bNOT_CORRECT\x10\x01\x12\x15\n\x11PARTIALLY_CORRECT\x10\x02\x12\x11\n\rFULLY_CORRECT\x10\x03\"\x82\x02\n\x15\x41rticleSuggestionData\x12\r\n\x05title\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x18\n\x10\x63onfidence_score\x18\x03 \x01(\x02\x12\\\n\x08metadata\x18\x04 \x03(\x0b\x32J.google.cloud.contactcenterinsights.v1.ArticleSuggestionData.MetadataEntry\x12\x14\n\x0cquery_record\x18\x05 \x01(\t\x12\x0e\n\x06source\x18\x06 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf8\x01\n\rFaqAnswerData\x12\x0e\n\x06\x61nswer\x18\x01 \x01(\t\x12\x18\n\x10\x63onfidence_score\x18\x02 \x01(\x02\x12\x10\n\x08question\x18\x03 \x01(\t\x12T\n\x08metadata\x18\x04 \x03(\x0b\x32\x42.google.cloud.contactcenterinsights.v1.FaqAnswerData.MetadataEntry\x12\x14\n\x0cquery_record\x18\x05 \x01(\t\x12\x0e\n\x06source\x18\x06 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xd7\x01\n\x0eSmartReplyData\x12\r\n\x05reply\x18\x01 \x01(\t\x12\x18\n\x10\x63onfidence_score\x18\x02 \x01(\x01\x12U\n\x08metadata\x18\x03 \x03(\x0b\x32\x43.google.cloud.contactcenterinsights.v1.SmartReplyData.MetadataEntry\x12\x14\n\x0cquery_record\x18\x04 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf4\x01\n\x1aSmartComposeSuggestionData\x12\x12\n\nsuggestion\x18\x01 \x01(\t\x12\x18\n\x10\x63onfidence_score\x18\x02 \x01(\x01\x12\x61\n\x08metadata\x18\x03 \x03(\x0b\x32O.google.cloud.contactcenterinsights.v1.SmartComposeSuggestionData.MetadataEntry\x12\x14\n\x0cquery_record\x18\x04 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"M\n\x19\x44ialogflowInteractionData\x12\x1c\n\x14\x64ialogflow_intent_id\x18\x01 \x01(\t\x12\x12\n\nconfidence\x18\x02 \x01(\x02\"\xcd\x03\n\'ConversationSummarizationSuggestionData\x12\x0c\n\x04text\x18\x01 \x01(\t\x12w\n\rtext_sections\x18\x05 \x03(\x0b\x32`.google.cloud.contactcenterinsights.v1.ConversationSummarizationSuggestionData.TextSectionsEntry\x12\x12\n\nconfidence\x18\x02 \x01(\x02\x12n\n\x08metadata\x18\x03 \x03(\x0b\x32\\.google.cloud.contactcenterinsights.v1.ConversationSummarizationSuggestionData.MetadataEntry\x12\x15\n\ranswer_record\x18\x04 \x01(\t\x12\x1a\n\x12\x63onversation_model\x18\x06 \x01(\t\x1a\x33\n\x11TextSectionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x8b\x03\n\x17\x43onversationParticipant\x12Q\n\x1b\x64ialogflow_participant_name\x18\x05 \x01(\tB*\xfa\x41\'\n%dialogflow.googleapis.com/ParticipantH\x00\x12\x11\n\x07user_id\x18\x06 \x01(\tH\x00\x12\"\n\x16\x64ialogflow_participant\x18\x01 \x01(\tB\x02\x18\x01\x12#\n\x1bobfuscated_external_user_id\x18\x03 \x01(\t\x12Q\n\x04role\x18\x02 \x01(\x0e\x32\x43.google.cloud.contactcenterinsights.v1.ConversationParticipant.Role\"_\n\x04Role\x12\x14\n\x10ROLE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bHUMAN_AGENT\x10\x01\x12\x13\n\x0f\x41UTOMATED_AGENT\x10\x02\x12\x0c\n\x08\x45ND_USER\x10\x03\x12\r\n\tANY_AGENT\x10\x04\x42\r\n\x0bparticipant\"\x90\x02\n\x04View\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\r\n\x05value\x18\x05 \x01(\t:d\xea\x41\x61\n)contactcenterinsights.googleapis.com/View\x12\x34projects/{project}/locations/{location}/views/{view}\"\xfb\t\n\x11\x41nnotatorSelector\x12\"\n\x1arun_interruption_annotator\x18\x01 \x01(\x08\x12\x1d\n\x15run_silence_annotator\x18\x02 \x01(\x08\x12$\n\x1crun_phrase_matcher_annotator\x18\x03 \x01(\x08\x12P\n\x0fphrase_matchers\x18\x04 \x03(\tB7\xfa\x41\x34\n2contactcenterinsights.googleapis.com/PhraseMatcher\x12\x1f\n\x17run_sentiment_annotator\x18\x05 \x01(\x08\x12\x1c\n\x14run_entity_annotator\x18\x06 \x01(\x08\x12\x1c\n\x14run_intent_annotator\x18\x07 \x01(\x08\x12!\n\x19run_issue_model_annotator\x18\x08 \x01(\x08\x12J\n\x0cissue_models\x18\n \x03(\tB4\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\x12#\n\x1brun_summarization_annotator\x18\t \x01(\x08\x12j\n\x14summarization_config\x18\x0b \x01(\x0b\x32L.google.cloud.contactcenterinsights.v1.AnnotatorSelector.SummarizationConfig\x12\x18\n\x10run_qa_annotator\x18\x0c \x01(\x08\x12T\n\tqa_config\x18\r \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.AnnotatorSelector.QaConfig\x1a\xe1\x02\n\x13SummarizationConfig\x12R\n\x14\x63onversation_profile\x18\x01 \x01(\tB2\xfa\x41/\n-dialogflow.googleapis.com/ConversationProfileH\x00\x12~\n\x13summarization_model\x18\x02 \x01(\x0e\x32_.google.cloud.contactcenterinsights.v1.AnnotatorSelector.SummarizationConfig.SummarizationModelH\x00\"f\n\x12SummarizationModel\x12#\n\x1fSUMMARIZATION_MODEL_UNSPECIFIED\x10\x00\x12\x12\n\x0e\x42\x41SELINE_MODEL\x10\x01\x12\x17\n\x13\x42\x41SELINE_MODEL_V2_0\x10\x02\x42\x0e\n\x0cmodel_source\x1a\xf9\x01\n\x08QaConfig\x12i\n\x0escorecard_list\x18\x01 \x01(\x0b\x32O.google.cloud.contactcenterinsights.v1.AnnotatorSelector.QaConfig.ScorecardListH\x00\x1an\n\rScorecardList\x12]\n\x16qa_scorecard_revisions\x18\x01 \x03(\tB=\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevisionB\x12\n\x10scorecard_source\"\xa1\x08\n\nQaQuestion\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x14\n\x0c\x61\x62\x62reviation\x18\x02 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x15\n\rquestion_body\x18\x05 \x01(\t\x12\x1b\n\x13\x61nswer_instructions\x18\t \x01(\t\x12V\n\x0e\x61nswer_choices\x18\x06 \x03(\x0b\x32>.google.cloud.contactcenterinsights.v1.QaQuestion.AnswerChoice\x12\x0c\n\x04tags\x18\x07 \x03(\t\x12\r\n\x05order\x18\x08 \x01(\x05\x12J\n\x07metrics\x18\n \x01(\x0b\x32\x39.google.cloud.contactcenterinsights.v1.QaQuestion.Metrics\x12Y\n\x0ftuning_metadata\x18\x0b \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.QaQuestion.TuningMetadata\x1a\x96\x01\n\x0c\x41nswerChoice\x12\x13\n\tstr_value\x18\x02 \x01(\tH\x00\x12\x13\n\tnum_value\x18\x03 \x01(\x01H\x00\x12\x14\n\nbool_value\x18\x04 \x01(\x08H\x00\x12\x12\n\x08na_value\x18\x05 \x01(\x08H\x00\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\x05score\x18\x06 \x01(\x01H\x01\x88\x01\x01\x42\x07\n\x05valueB\x08\n\x06_score\x1a \n\x07Metrics\x12\x15\n\x08\x61\x63\x63uracy\x18\x01 \x01(\x01\x42\x03\xe0\x41\x03\x1a\xad\x01\n\x0eTuningMetadata\x12\x1f\n\x17total_valid_label_count\x18\x01 \x01(\x03\x12\x64\n\x1b\x64\x61taset_validation_warnings\x18\x02 \x03(\x0e\x32?.google.cloud.contactcenterinsights.v1.DatasetValidationWarning\x12\x14\n\x0ctuning_error\x18\x03 \x01(\t:\xc2\x01\xea\x41\xbe\x01\n/contactcenterinsights.googleapis.com/QaQuestion\x12rprojects/{project}/locations/{location}/qaScorecards/{qa_scorecard}/revisions/{revision}/qaQuestions/{qa_question}*\x0bqaQuestions2\nqaQuestion\"\xd0\x02\n\x0bQaScorecard\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x14\n\x0c\x64isplay_name\x18\x07 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03:\x96\x01\xea\x41\x92\x01\n0contactcenterinsights.googleapis.com/QaScorecard\x12\x43projects/{project}/locations/{location}/qaScorecards/{qa_scorecard}*\x0cqaScorecards2\x0bqaScorecard\"\xdf\x04\n\x13QaScorecardRevision\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x44\n\x08snapshot\x18\x02 \x01(\x0b\x32\x32.google.cloud.contactcenterinsights.v1.QaScorecard\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x1a\n\ralternate_ids\x18\x04 \x03(\tB\x03\xe0\x41\x03\x12T\n\x05state\x18\x05 \x01(\x0e\x32@.google.cloud.contactcenterinsights.v1.QaScorecardRevision.StateB\x03\xe0\x41\x03\"\x80\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x45\x44ITABLE\x10\x0c\x12\x0c\n\x08TRAINING\x10\x02\x12\x13\n\x0fTRAINING_FAILED\x10\t\x12\t\n\x05READY\x10\x0b\x12\x0c\n\x08\x44\x45LETING\x10\x07\x12\x16\n\x12TRAINING_CANCELLED\x10\x0e:\xc3\x01\xea\x41\xbf\x01\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12Xprojects/{project}/locations/{location}/qaScorecards/{qa_scorecard}/revisions/{revision}*\x14qaScorecardRevisions2\x13qaScorecardRevision\"\x92\x07\n\x08QaAnswer\x12I\n\x0bqa_question\x18\x07 \x01(\tB4\xfa\x41\x31\n/contactcenterinsights.googleapis.com/QaQuestion\x12L\n\x0c\x63onversation\x18\x02 \x01(\tB6\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x15\n\rquestion_body\x18\x06 \x01(\t\x12Q\n\x0c\x61nswer_value\x18\x03 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.QaAnswer.AnswerValue\x12\x0c\n\x04tags\x18\x05 \x03(\t\x12T\n\x0e\x61nswer_sources\x18\x08 \x03(\x0b\x32<.google.cloud.contactcenterinsights.v1.QaAnswer.AnswerSource\x1a\x8a\x02\n\x0b\x41nswerValue\x12\x13\n\tstr_value\x18\x02 \x01(\tH\x00\x12\x13\n\tnum_value\x18\x03 \x01(\x01H\x00\x12\x14\n\nbool_value\x18\x04 \x01(\x08H\x00\x12\x12\n\x08na_value\x18\x05 \x01(\x08H\x00\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x17\n\x05score\x18\x06 \x01(\x01\x42\x03\xe0\x41\x03H\x01\x88\x01\x01\x12!\n\x0fpotential_score\x18\x07 \x01(\x01\x42\x03\xe0\x41\x03H\x02\x88\x01\x01\x12\"\n\x10normalized_score\x18\x08 \x01(\x01\x42\x03\xe0\x41\x03H\x03\x88\x01\x01\x42\x07\n\x05valueB\x08\n\x06_scoreB\x12\n\x10_potential_scoreB\x13\n\x11_normalized_score\x1a\x91\x02\n\x0c\x41nswerSource\x12\\\n\x0bsource_type\x18\x01 \x01(\x0e\x32G.google.cloud.contactcenterinsights.v1.QaAnswer.AnswerSource.SourceType\x12Q\n\x0c\x61nswer_value\x18\x02 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.QaAnswer.AnswerValue\"P\n\nSourceType\x12\x1b\n\x17SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10SYSTEM_GENERATED\x10\x01\x12\x0f\n\x0bMANUAL_EDIT\x10\x02\"\xb0\x0b\n\x11QaScorecardResult\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\\\n\x15qa_scorecard_revision\x18\x02 \x01(\tB=\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12L\n\x0c\x63onversation\x18\x03 \x01(\tB6\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x34\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x10\n\x08\x61gent_id\x18\x05 \x01(\t\x12\x43\n\nqa_answers\x18\x06 \x03(\x0b\x32/.google.cloud.contactcenterinsights.v1.QaAnswer\x12\x12\n\x05score\x18\x07 \x01(\x01H\x00\x88\x01\x01\x12\x1c\n\x0fpotential_score\x18\x08 \x01(\x01H\x01\x88\x01\x01\x12\x1d\n\x10normalized_score\x18\t \x01(\x01H\x02\x88\x01\x01\x12\\\n\x0eqa_tag_results\x18\n \x03(\x0b\x32\x44.google.cloud.contactcenterinsights.v1.QaScorecardResult.QaTagResult\x12[\n\rscore_sources\x18\x0b \x03(\x0b\x32\x44.google.cloud.contactcenterinsights.v1.QaScorecardResult.ScoreSource\x1a\x9e\x01\n\x0bQaTagResult\x12\x0b\n\x03tag\x18\x01 \x01(\t\x12\x12\n\x05score\x18\x02 \x01(\x01H\x00\x88\x01\x01\x12\x1c\n\x0fpotential_score\x18\x03 \x01(\x01H\x01\x88\x01\x01\x12\x1d\n\x10normalized_score\x18\x04 \x01(\x01H\x02\x88\x01\x01\x42\x08\n\x06_scoreB\x12\n\x10_potential_scoreB\x13\n\x11_normalized_score\x1a\xb6\x03\n\x0bScoreSource\x12\x64\n\x0bsource_type\x18\x01 \x01(\x0e\x32O.google.cloud.contactcenterinsights.v1.QaScorecardResult.ScoreSource.SourceType\x12\x12\n\x05score\x18\x02 \x01(\x01H\x00\x88\x01\x01\x12\x1c\n\x0fpotential_score\x18\x03 \x01(\x01H\x01\x88\x01\x01\x12\x1d\n\x10normalized_score\x18\x04 \x01(\x01H\x02\x88\x01\x01\x12\\\n\x0eqa_tag_results\x18\x05 \x03(\x0b\x32\x44.google.cloud.contactcenterinsights.v1.QaScorecardResult.QaTagResult\"_\n\nSourceType\x12\x1b\n\x17SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15SYSTEM_GENERATED_ONLY\x10\x01\x12\x19\n\x15INCLUDES_MANUAL_EDITS\x10\x02\x42\x08\n\x06_scoreB\x12\n\x10_potential_scoreB\x13\n\x11_normalized_score:\xb5\x01\xea\x41\xb1\x01\n6contactcenterinsights.googleapis.com/QaScorecardResult\x12Pprojects/{project}/locations/{location}/qaScorecardResults/{qa_scorecard_result}*\x12qaScorecardResults2\x11qaScorecardResultB\x08\n\x06_scoreB\x12\n\x10_potential_scoreB\x13\n\x11_normalized_score*\xe9\x01\n\x18\x44\x61tasetValidationWarning\x12*\n&DATASET_VALIDATION_WARNING_UNSPECIFIED\x10\x00\x12$\n TOO_MANY_INVALID_FEEDBACK_LABELS\x10\x01\x12 \n\x1cINSUFFICIENT_FEEDBACK_LABELS\x10\x02\x12+\n\'INSUFFICIENT_FEEDBACK_LABELS_PER_ANSWER\x10\x03\x12,\n(ALL_FEEDBACK_LABELS_HAVE_THE_SAME_ANSWER\x10\x04\x42\xe0\x05\n)com.google.cloud.contactcenterinsights.v1B\x0eResourcesProtoP\x01Z_cloud.google.com/go/contactcenterinsights/apiv1/contactcenterinsightspb;contactcenterinsightspb\xaa\x02%Google.Cloud.ContactCenterInsights.V1\xca\x02%Google\\Cloud\\ContactCenterInsights\\V1\xea\x02(Google::Cloud::ContactCenterInsights::V1\xea\x41\x84\x01\n-dialogflow.googleapis.com/ConversationProfile\x12Sprojects/{project}/locations/{location}/conversationProfiles/{conversation_profile}\xea\x41\xd4\x01\n%dialogflow.googleapis.com/Participant\x12Jprojects/{project}/conversations/{conversation}/participants/{participant}\x12_projects/{project}/locations/{location}/conversations/{conversation}/participants/{participant}\xea\x41\x64\n speech.googleapis.com/Recognizer\x12@projects/{project}/locations/{location}/recognizers/{recognizer}b\x06proto3"
|
13
|
+
descriptor_data = "\n5google/cloud/contactcenterinsights/v1/resources.proto\x12%google.cloud.contactcenterinsights.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xe3\x19\n\x0c\x43onversation\x12Y\n\rcall_metadata\x18\x07 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.Conversation.CallMetadataH\x00\x12\x31\n\x0b\x65xpire_time\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x12-\n\x03ttl\x18\x10 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x04H\x01\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12R\n\x0b\x64\x61ta_source\x18\x02 \x01(\x0b\x32=.google.cloud.contactcenterinsights.v1.ConversationDataSource\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12.\n\nstart_time\x18\x11 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x15\n\rlanguage_code\x18\x0e \x01(\t\x12\x10\n\x08\x61gent_id\x18\x05 \x01(\t\x12O\n\x06labels\x18\x06 \x03(\x0b\x32?.google.cloud.contactcenterinsights.v1.Conversation.LabelsEntry\x12]\n\x10quality_metadata\x18\x18 \x01(\x0b\x32\x43.google.cloud.contactcenterinsights.v1.Conversation.QualityMetadata\x12\x1a\n\rmetadata_json\x18\x19 \x01(\tB\x03\xe0\x41\x04\x12W\n\ntranscript\x18\x08 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.Conversation.TranscriptB\x03\xe0\x41\x03\x12O\n\x06medium\x18\t \x01(\x0e\x32:.google.cloud.contactcenterinsights.v1.Conversation.MediumB\x03\xe0\x41\x05\x12\x30\n\x08\x64uration\x18\n \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x03\x12\x17\n\nturn_count\x18\x0b \x01(\x05\x42\x03\xe0\x41\x03\x12M\n\x0flatest_analysis\x18\x0c \x01(\x0b\x32/.google.cloud.contactcenterinsights.v1.AnalysisB\x03\xe0\x41\x03\x12k\n\x0elatest_summary\x18\x14 \x01(\x0b\x32N.google.cloud.contactcenterinsights.v1.ConversationSummarizationSuggestionDataB\x03\xe0\x41\x03\x12Z\n\x13runtime_annotations\x18\r \x03(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.RuntimeAnnotationB\x03\xe0\x41\x03\x12k\n\x12\x64ialogflow_intents\x18\x12 \x03(\x0b\x32J.google.cloud.contactcenterinsights.v1.Conversation.DialogflowIntentsEntryB\x03\xe0\x41\x03\x12\x1a\n\x12obfuscated_user_id\x18\x15 \x01(\t\x1a?\n\x0c\x43\x61llMetadata\x12\x18\n\x10\x63ustomer_channel\x18\x01 \x01(\x05\x12\x15\n\ragent_channel\x18\x02 \x01(\x05\x1a\x96\x03\n\x0fQualityMetadata\x12$\n\x1c\x63ustomer_satisfaction_rating\x18\x01 \x01(\x05\x12\x30\n\rwait_duration\x18\x02 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x11\n\tmenu_path\x18\x03 \x01(\t\x12\x61\n\nagent_info\x18\x04 \x03(\x0b\x32M.google.cloud.contactcenterinsights.v1.Conversation.QualityMetadata.AgentInfo\x1a\xb4\x01\n\tAgentInfo\x12\x10\n\x08\x61gent_id\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x0c\n\x04team\x18\x03 \x01(\t\x12\x18\n\x10\x64isposition_code\x18\x04 \x01(\t\x12W\n\nagent_type\x18\x05 \x01(\x0e\x32\x43.google.cloud.contactcenterinsights.v1.ConversationParticipant.Role\x1a\x86\x07\n\nTranscript\x12m\n\x13transcript_segments\x18\x01 \x03(\x0b\x32P.google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment\x1a\x88\x06\n\x11TranscriptSegment\x12\x30\n\x0cmessage_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0c\n\x04text\x18\x01 \x01(\t\x12\x12\n\nconfidence\x18\x02 \x01(\x02\x12h\n\x05words\x18\x03 \x03(\x0b\x32Y.google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment.WordInfo\x12\x15\n\rlanguage_code\x18\x04 \x01(\t\x12\x13\n\x0b\x63hannel_tag\x18\x05 \x01(\x05\x12[\n\x13segment_participant\x18\t \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.ConversationParticipant\x12\x8f\x01\n\x1b\x64ialogflow_segment_metadata\x18\n \x01(\x0b\x32j.google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment.DialogflowSegmentMetadata\x12G\n\tsentiment\x18\x0b \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.SentimentData\x1a\x8c\x01\n\x08WordInfo\x12/\n\x0cstart_offset\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12-\n\nend_offset\x18\x02 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x0c\n\x04word\x18\x03 \x01(\t\x12\x12\n\nconfidence\x18\x04 \x01(\x02\x1a\x42\n\x19\x44ialogflowSegmentMetadata\x12%\n\x1dsmart_reply_allowlist_covered\x18\x01 \x01(\x08\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aq\n\x16\x44ialogflowIntentsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x46\n\x05value\x18\x02 \x01(\x0b\x32\x37.google.cloud.contactcenterinsights.v1.DialogflowIntent:\x02\x38\x01\":\n\x06Medium\x12\x16\n\x12MEDIUM_UNSPECIFIED\x10\x00\x12\x0e\n\nPHONE_CALL\x10\x01\x12\x08\n\x04\x43HAT\x10\x02:\xac\x02\xea\x41\xa8\x02\n1contactcenterinsights.googleapis.com/Conversation\x12\x44projects/{project}/locations/{location}/conversations/{conversation}\x12\x8f\x01projects/{project}/locations/{location}/authorizedViewSets/{authorized_view_set}/authorizedViews/{authorized_view}/conversations/{conversation}*\rconversations2\x0c\x63onversationB\n\n\x08metadataB\x0c\n\nexpiration\"\xff\x04\n\x08\x41nalysis\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x35\n\x0crequest_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12S\n\x0f\x61nalysis_result\x18\x07 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.AnalysisResultB\x03\xe0\x41\x03\x12T\n\x12\x61nnotator_selector\x18\x08 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelector:\xc7\x02\xea\x41\xc3\x02\n-contactcenterinsights.googleapis.com/Analysis\x12Xprojects/{project}/locations/{location}/conversations/{conversation}/analyses/{analysis}\x12\xa3\x01projects/{project}/locations/{location}/authorizedViewSets/{authorized_view_set}/authorizedViews/{authorized_view}/conversations/{conversation}/analyses/{analysis}*\x08\x61nalyses2\x08\x61nalysis\"\xc0\x01\n\x16\x43onversationDataSource\x12\x46\n\ngcs_source\x18\x01 \x01(\x0b\x32\x30.google.cloud.contactcenterinsights.v1.GcsSourceH\x00\x12T\n\x11\x64ialogflow_source\x18\x03 \x01(\x0b\x32\x37.google.cloud.contactcenterinsights.v1.DialogflowSourceH\x00\x42\x08\n\x06source\";\n\tGcsSource\x12\x11\n\taudio_uri\x18\x01 \x01(\t\x12\x1b\n\x0etranscript_uri\x18\x02 \x01(\tB\x03\xe0\x41\x05\"K\n\x10\x44ialogflowSource\x12$\n\x17\x64ialogflow_conversation\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\taudio_uri\x18\x03 \x01(\t\"\xf0\t\n\x0e\x41nalysisResult\x12l\n\x16\x63\x61ll_analysis_metadata\x18\x02 \x01(\x0b\x32J.google.cloud.contactcenterinsights.v1.AnalysisResult.CallAnalysisMetadataH\x00\x12,\n\x08\x65nd_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x1a\xb5\x08\n\x14\x43\x61llAnalysisMetadata\x12J\n\x0b\x61nnotations\x18\x02 \x03(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.CallAnnotation\x12j\n\x08\x65ntities\x18\x03 \x03(\x0b\x32X.google.cloud.contactcenterinsights.v1.AnalysisResult.CallAnalysisMetadata.EntitiesEntry\x12U\n\nsentiments\x18\x04 \x03(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.ConversationLevelSentiment\x12P\n\x07silence\x18\x0b \x01(\x0b\x32?.google.cloud.contactcenterinsights.v1.ConversationLevelSilence\x12h\n\x07intents\x18\x06 \x03(\x0b\x32W.google.cloud.contactcenterinsights.v1.AnalysisResult.CallAnalysisMetadata.IntentsEntry\x12w\n\x0fphrase_matchers\x18\x07 \x03(\x0b\x32^.google.cloud.contactcenterinsights.v1.AnalysisResult.CallAnalysisMetadata.PhraseMatchersEntry\x12S\n\x12issue_model_result\x18\x08 \x01(\x0b\x32\x37.google.cloud.contactcenterinsights.v1.IssueModelResult\x12V\n\x14qa_scorecard_results\x18\n \x03(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.QaScorecardResult\x1a^\n\rEntitiesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12<\n\x05value\x18\x02 \x01(\x0b\x32-.google.cloud.contactcenterinsights.v1.Entity:\x02\x38\x01\x1a]\n\x0cIntentsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12<\n\x05value\x18\x02 \x01(\x0b\x32-.google.cloud.contactcenterinsights.v1.Intent:\x02\x38\x01\x1am\n\x13PhraseMatchersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x45\n\x05value\x18\x02 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.PhraseMatchData:\x02\x38\x01\x42\n\n\x08metadata\"\xa5\x01\n\x10IssueModelResult\x12I\n\x0bissue_model\x18\x01 \x01(\tB4\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\x12\x46\n\x06issues\x18\x02 \x03(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.IssueAssignment\"\x91\x05\n\rFeedbackLabel\x12\x0f\n\x05label\x18\x04 \x01(\tH\x00\x12V\n\x0fqa_answer_label\x18\x07 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.QaAnswer.AnswerValueH\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x18\n\x10labeled_resource\x18\x03 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03:\xef\x02\xea\x41\xeb\x02\n2contactcenterinsights.googleapis.com/FeedbackLabel\x12\x64projects/{project}/locations/{location}/conversations/{conversation}/feedbackLabels/{feedback_label}\x12\xaf\x01projects/{project}/locations/{location}/authorizedViewSets/{authorized_view_set}/authorizedViews/{authorized_view}/conversations/{conversation}/feedbackLabels/{feedback_label}*\x0e\x66\x65\x65\x64\x62\x61\x63kLabels2\rfeedbackLabelB\x0c\n\nlabel_type\"\x7f\n\x1a\x43onversationLevelSentiment\x12\x13\n\x0b\x63hannel_tag\x18\x01 \x01(\x05\x12L\n\x0esentiment_data\x18\x02 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.SentimentData\"k\n\x18\x43onversationLevelSilence\x12\x33\n\x10silence_duration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x1a\n\x12silence_percentage\x18\x02 \x01(\x02\"J\n\x0fIssueAssignment\x12\r\n\x05issue\x18\x01 \x01(\t\x12\r\n\x05score\x18\x02 \x01(\x01\x12\x19\n\x0c\x64isplay_name\x18\x03 \x01(\tB\x03\xe0\x41\x05\"\xf5\x06\n\x0e\x43\x61llAnnotation\x12T\n\x11interruption_data\x18\n \x01(\x0b\x32\x37.google.cloud.contactcenterinsights.v1.InterruptionDataH\x00\x12N\n\x0esentiment_data\x18\x0b \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.SentimentDataH\x00\x12J\n\x0csilence_data\x18\x0c \x01(\x0b\x32\x32.google.cloud.contactcenterinsights.v1.SilenceDataH\x00\x12\x44\n\thold_data\x18\r \x01(\x0b\x32/.google.cloud.contactcenterinsights.v1.HoldDataH\x00\x12W\n\x13\x65ntity_mention_data\x18\x0f \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.EntityMentionDataH\x00\x12S\n\x11intent_match_data\x18\x10 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.IntentMatchDataH\x00\x12S\n\x11phrase_match_data\x18\x11 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.PhraseMatchDataH\x00\x12Q\n\x10issue_match_data\x18\x12 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.IssueMatchDataH\x00\x12\x13\n\x0b\x63hannel_tag\x18\x01 \x01(\x05\x12\\\n\x19\x61nnotation_start_boundary\x18\x04 \x01(\x0b\x32\x39.google.cloud.contactcenterinsights.v1.AnnotationBoundary\x12Z\n\x17\x61nnotation_end_boundary\x18\x05 \x01(\x0b\x32\x39.google.cloud.contactcenterinsights.v1.AnnotationBoundaryB\x06\n\x04\x64\x61ta\"Y\n\x12\x41nnotationBoundary\x12\x14\n\nword_index\x18\x03 \x01(\x05H\x00\x12\x18\n\x10transcript_index\x18\x01 \x01(\x05\x42\x13\n\x11\x64\x65tailed_boundary\"\x80\x04\n\x06\x45ntity\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12@\n\x04type\x18\x02 \x01(\x0e\x32\x32.google.cloud.contactcenterinsights.v1.Entity.Type\x12M\n\x08metadata\x18\x03 \x03(\x0b\x32;.google.cloud.contactcenterinsights.v1.Entity.MetadataEntry\x12\x10\n\x08salience\x18\x04 \x01(\x02\x12G\n\tsentiment\x18\x05 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.SentimentData\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xc2\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06PERSON\x10\x01\x12\x0c\n\x08LOCATION\x10\x02\x12\x10\n\x0cORGANIZATION\x10\x03\x12\t\n\x05\x45VENT\x10\x04\x12\x0f\n\x0bWORK_OF_ART\x10\x05\x12\x11\n\rCONSUMER_GOOD\x10\x06\x12\t\n\x05OTHER\x10\x07\x12\x10\n\x0cPHONE_NUMBER\x10\t\x12\x0b\n\x07\x41\x44\x44RESS\x10\n\x12\x08\n\x04\x44\x41TE\x10\x0b\x12\n\n\x06NUMBER\x10\x0c\x12\t\n\x05PRICE\x10\r\"*\n\x06Intent\x12\n\n\x02id\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\"?\n\x0fPhraseMatchData\x12\x16\n\x0ephrase_matcher\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\"(\n\x10\x44ialogflowIntent\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\"\x12\n\x10InterruptionData\"\r\n\x0bSilenceData\"\n\n\x08HoldData\"\x8f\x02\n\x11\x45ntityMentionData\x12\x18\n\x10\x65ntity_unique_id\x18\x01 \x01(\t\x12R\n\x04type\x18\x02 \x01(\x0e\x32\x44.google.cloud.contactcenterinsights.v1.EntityMentionData.MentionType\x12G\n\tsentiment\x18\x03 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.SentimentData\"C\n\x0bMentionType\x12\x1c\n\x18MENTION_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06PROPER\x10\x01\x12\n\n\x06\x43OMMON\x10\x02\"+\n\x0fIntentMatchData\x12\x18\n\x10intent_unique_id\x18\x01 \x01(\t\"1\n\rSentimentData\x12\x11\n\tmagnitude\x18\x01 \x01(\x02\x12\r\n\x05score\x18\x02 \x01(\x02\"b\n\x0eIssueMatchData\x12P\n\x10issue_assignment\x18\x01 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.IssueAssignment\"\xf2\x07\n\nIssueModel\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x18\n\x0bissue_count\x18\x08 \x01(\x03\x42\x03\xe0\x41\x03\x12K\n\x05state\x18\x05 \x01(\x0e\x32\x37.google.cloud.contactcenterinsights.v1.IssueModel.StateB\x03\xe0\x41\x03\x12\\\n\x11input_data_config\x18\x06 \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.IssueModel.InputDataConfig\x12[\n\x0etraining_stats\x18\x07 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.IssueModelLabelStatsB\x06\xe0\x41\x03\xe0\x41\x05\x12O\n\nmodel_type\x18\t \x01(\x0e\x32;.google.cloud.contactcenterinsights.v1.IssueModel.ModelType\x12\x15\n\rlanguage_code\x18\n \x01(\t\x1a\x9c\x01\n\x0fInputDataConfig\x12N\n\x06medium\x18\x01 \x01(\x0e\x32:.google.cloud.contactcenterinsights.v1.Conversation.MediumB\x02\x18\x01\x12)\n\x1ctraining_conversations_count\x18\x02 \x01(\x03\x42\x03\xe0\x41\x03\x12\x0e\n\x06\x66ilter\x18\x03 \x01(\t\"j\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0e\n\nUNDEPLOYED\x10\x01\x12\r\n\tDEPLOYING\x10\x02\x12\x0c\n\x08\x44\x45PLOYED\x10\x03\x12\x0f\n\x0bUNDEPLOYING\x10\x04\x12\x0c\n\x08\x44\x45LETING\x10\x05\"A\n\tModelType\x12\x1a\n\x16MODEL_TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07TYPE_V1\x10\x01\x12\x0b\n\x07TYPE_V2\x10\x02:w\xea\x41t\n/contactcenterinsights.googleapis.com/IssueModel\x12\x41projects/{project}/locations/{location}/issueModels/{issue_model}\"\xdd\x02\n\x05Issue\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x1e\n\x11sample_utterances\x18\x06 \x03(\tB\x03\xe0\x41\x03\x12\x1b\n\x13\x64isplay_description\x18\x0e \x01(\t:\x81\x01\xea\x41~\n*contactcenterinsights.googleapis.com/Issue\x12Pprojects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}\"\x9b\x03\n\x14IssueModelLabelStats\x12$\n\x1c\x61nalyzed_conversations_count\x18\x01 \x01(\x03\x12(\n unclassified_conversations_count\x18\x02 \x01(\x03\x12`\n\x0bissue_stats\x18\x03 \x03(\x0b\x32K.google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStatsEntry\x1aV\n\nIssueStats\x12\r\n\x05issue\x18\x01 \x01(\t\x12#\n\x1blabeled_conversations_count\x18\x02 \x01(\x03\x12\x14\n\x0c\x64isplay_name\x18\x03 \x01(\t\x1ay\n\x0fIssueStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12U\n\x05value\x18\x02 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats:\x02\x38\x01\"\x93\x06\n\rPhraseMatcher\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1b\n\x0brevision_id\x18\x02 \x01(\tB\x06\xe0\x41\x05\xe0\x41\x03\x12\x13\n\x0bversion_tag\x18\x03 \x01(\t\x12=\n\x14revision_create_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x14\n\x0c\x64isplay_name\x18\x05 \x01(\t\x12Y\n\x04type\x18\x06 \x01(\x0e\x32\x46.google.cloud.contactcenterinsights.v1.PhraseMatcher.PhraseMatcherTypeB\x03\xe0\x41\x02\x12\x0e\n\x06\x61\x63tive\x18\x07 \x01(\x08\x12]\n\x18phrase_match_rule_groups\x18\x08 \x03(\x0b\x32;.google.cloud.contactcenterinsights.v1.PhraseMatchRuleGroup\x12?\n\x16\x61\x63tivation_update_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12W\n\nrole_match\x18\n \x01(\x0e\x32\x43.google.cloud.contactcenterinsights.v1.ConversationParticipant.Role\x12\x34\n\x0bupdate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"P\n\x11PhraseMatcherType\x12#\n\x1fPHRASE_MATCHER_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06\x41LL_OF\x10\x01\x12\n\n\x06\x41NY_OF\x10\x02:\x80\x01\xea\x41}\n2contactcenterinsights.googleapis.com/PhraseMatcher\x12Gprojects/{project}/locations/{location}/phraseMatchers/{phrase_matcher}\"\xb5\x02\n\x14PhraseMatchRuleGroup\x12g\n\x04type\x18\x01 \x01(\x0e\x32T.google.cloud.contactcenterinsights.v1.PhraseMatchRuleGroup.PhraseMatchRuleGroupTypeB\x03\xe0\x41\x02\x12R\n\x12phrase_match_rules\x18\x02 \x03(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.PhraseMatchRule\"`\n\x18PhraseMatchRuleGroupType\x12,\n(PHRASE_MATCH_RULE_GROUP_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06\x41LL_OF\x10\x01\x12\n\n\x06\x41NY_OF\x10\x02\"\x84\x01\n\x0fPhraseMatchRule\x12\x12\n\x05query\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x0f\n\x07negated\x18\x02 \x01(\x08\x12L\n\x06\x63onfig\x18\x03 \x01(\x0b\x32<.google.cloud.contactcenterinsights.v1.PhraseMatchRuleConfig\"x\n\x15PhraseMatchRuleConfig\x12U\n\x12\x65xact_match_config\x18\x01 \x01(\x0b\x32\x37.google.cloud.contactcenterinsights.v1.ExactMatchConfigH\x00\x42\x08\n\x06\x63onfig\"*\n\x10\x45xactMatchConfig\x12\x16\n\x0e\x63\x61se_sensitive\x18\x01 \x01(\x08\"\xbc\x07\n\x08Settings\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x15\n\rlanguage_code\x18\x04 \x01(\t\x12\x33\n\x10\x63onversation_ttl\x18\x05 \x01(\x0b\x32\x19.google.protobuf.Duration\x12u\n\x1cpubsub_notification_settings\x18\x06 \x03(\x0b\x32O.google.cloud.contactcenterinsights.v1.Settings.PubsubNotificationSettingsEntry\x12W\n\x0f\x61nalysis_config\x18\x07 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.Settings.AnalysisConfig\x12P\n\x10redaction_config\x18\n \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.RedactionConfig\x12O\n\rspeech_config\x18\x0b \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.SpeechConfigB\x03\xe0\x41\x01\x1a\xc8\x01\n\x0e\x41nalysisConfig\x12/\n\'runtime_integration_analysis_percentage\x18\x01 \x01(\x01\x12/\n\'upload_conversation_analysis_percentage\x18\x06 \x01(\x01\x12T\n\x12\x61nnotator_selector\x18\x05 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelector\x1a\x41\n\x1fPubsubNotificationSettingsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:d\xea\x41\x61\n-contactcenterinsights.googleapis.com/Settings\x12\x30projects/{project}/locations/{location}/settings\"\xf7\x03\n\x0c\x41nalysisRule\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\x04 \x01(\tH\x00\x88\x01\x01\x12\x1b\n\x13\x63onversation_filter\x18\x05 \x01(\t\x12T\n\x12\x61nnotator_selector\x18\x06 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelector\x12\x1b\n\x13\x61nalysis_percentage\x18\x07 \x01(\x01\x12\x0e\n\x06\x61\x63tive\x18\x08 \x01(\x08:\x9b\x01\xea\x41\x97\x01\n1contactcenterinsights.googleapis.com/AnalysisRule\x12\x45projects/{project}/locations/{location}/analysisRules/{analysis_rule}*\ranalysisRules2\x0c\x61nalysisRuleB\x0f\n\r_display_name\"\xab\x01\n\x0e\x45ncryptionSpec\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x14\n\x07kms_key\x18\x02 \x01(\tB\x03\xe0\x41\x02:p\xea\x41m\n3contactcenterinsights.googleapis.com/EncryptionSpec\x12\x36projects/{project}/locations/{location}/encryptionSpec\"H\n\x0fRedactionConfig\x12\x1b\n\x13\x64\x65identify_template\x18\x01 \x01(\t\x12\x18\n\x10inspect_template\x18\x02 \x01(\t\"P\n\x0cSpeechConfig\x12@\n\x11speech_recognizer\x18\x01 \x01(\tB%\xfa\x41\"\n speech.googleapis.com/Recognizer\"\xdf\t\n\x11RuntimeAnnotation\x12Z\n\x12\x61rticle_suggestion\x18\x06 \x01(\x0b\x32<.google.cloud.contactcenterinsights.v1.ArticleSuggestionDataH\x00\x12J\n\nfaq_answer\x18\x07 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.FaqAnswerDataH\x00\x12L\n\x0bsmart_reply\x18\x08 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.SmartReplyDataH\x00\x12\x65\n\x18smart_compose_suggestion\x18\t \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.SmartComposeSuggestionDataH\x00\x12\x62\n\x16\x64ialogflow_interaction\x18\n \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.DialogflowInteractionDataH\x00\x12\x7f\n%conversation_summarization_suggestion\x18\x0c \x01(\x0b\x32N.google.cloud.contactcenterinsights.v1.ConversationSummarizationSuggestionDataH\x00\x12\x15\n\rannotation_id\x18\x01 \x01(\t\x12/\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12Q\n\x0estart_boundary\x18\x03 \x01(\x0b\x32\x39.google.cloud.contactcenterinsights.v1.AnnotationBoundary\x12O\n\x0c\x65nd_boundary\x18\x04 \x01(\x0b\x32\x39.google.cloud.contactcenterinsights.v1.AnnotationBoundary\x12N\n\x0f\x61nswer_feedback\x18\x05 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.AnswerFeedback\x12V\n\nuser_input\x18\x10 \x01(\x0b\x32\x42.google.cloud.contactcenterinsights.v1.RuntimeAnnotation.UserInput\x1a\xeb\x01\n\tUserInput\x12\r\n\x05query\x18\x01 \x01(\t\x12\x16\n\x0egenerator_name\x18\x02 \x01(\t\x12\x64\n\x0cquery_source\x18\x03 \x01(\x0e\x32N.google.cloud.contactcenterinsights.v1.RuntimeAnnotation.UserInput.QuerySource\"Q\n\x0bQuerySource\x12\x1c\n\x18QUERY_SOURCE_UNSPECIFIED\x10\x00\x12\x0f\n\x0b\x41GENT_QUERY\x10\x01\x12\x13\n\x0fSUGGESTED_QUERY\x10\x02\x42\x06\n\x04\x64\x61ta\"\x89\x02\n\x0e\x41nswerFeedback\x12\x61\n\x11\x63orrectness_level\x18\x01 \x01(\x0e\x32\x46.google.cloud.contactcenterinsights.v1.AnswerFeedback.CorrectnessLevel\x12\x0f\n\x07\x63licked\x18\x02 \x01(\x08\x12\x11\n\tdisplayed\x18\x03 \x01(\x08\"p\n\x10\x43orrectnessLevel\x12!\n\x1d\x43ORRECTNESS_LEVEL_UNSPECIFIED\x10\x00\x12\x0f\n\x0bNOT_CORRECT\x10\x01\x12\x15\n\x11PARTIALLY_CORRECT\x10\x02\x12\x11\n\rFULLY_CORRECT\x10\x03\"\x82\x02\n\x15\x41rticleSuggestionData\x12\r\n\x05title\x18\x01 \x01(\t\x12\x0b\n\x03uri\x18\x02 \x01(\t\x12\x18\n\x10\x63onfidence_score\x18\x03 \x01(\x02\x12\\\n\x08metadata\x18\x04 \x03(\x0b\x32J.google.cloud.contactcenterinsights.v1.ArticleSuggestionData.MetadataEntry\x12\x14\n\x0cquery_record\x18\x05 \x01(\t\x12\x0e\n\x06source\x18\x06 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf8\x01\n\rFaqAnswerData\x12\x0e\n\x06\x61nswer\x18\x01 \x01(\t\x12\x18\n\x10\x63onfidence_score\x18\x02 \x01(\x02\x12\x10\n\x08question\x18\x03 \x01(\t\x12T\n\x08metadata\x18\x04 \x03(\x0b\x32\x42.google.cloud.contactcenterinsights.v1.FaqAnswerData.MetadataEntry\x12\x14\n\x0cquery_record\x18\x05 \x01(\t\x12\x0e\n\x06source\x18\x06 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xd7\x01\n\x0eSmartReplyData\x12\r\n\x05reply\x18\x01 \x01(\t\x12\x18\n\x10\x63onfidence_score\x18\x02 \x01(\x01\x12U\n\x08metadata\x18\x03 \x03(\x0b\x32\x43.google.cloud.contactcenterinsights.v1.SmartReplyData.MetadataEntry\x12\x14\n\x0cquery_record\x18\x04 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf4\x01\n\x1aSmartComposeSuggestionData\x12\x12\n\nsuggestion\x18\x01 \x01(\t\x12\x18\n\x10\x63onfidence_score\x18\x02 \x01(\x01\x12\x61\n\x08metadata\x18\x03 \x03(\x0b\x32O.google.cloud.contactcenterinsights.v1.SmartComposeSuggestionData.MetadataEntry\x12\x14\n\x0cquery_record\x18\x04 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"M\n\x19\x44ialogflowInteractionData\x12\x1c\n\x14\x64ialogflow_intent_id\x18\x01 \x01(\t\x12\x12\n\nconfidence\x18\x02 \x01(\x02\"\xcd\x03\n\'ConversationSummarizationSuggestionData\x12\x0c\n\x04text\x18\x01 \x01(\t\x12w\n\rtext_sections\x18\x05 \x03(\x0b\x32`.google.cloud.contactcenterinsights.v1.ConversationSummarizationSuggestionData.TextSectionsEntry\x12\x12\n\nconfidence\x18\x02 \x01(\x02\x12n\n\x08metadata\x18\x03 \x03(\x0b\x32\\.google.cloud.contactcenterinsights.v1.ConversationSummarizationSuggestionData.MetadataEntry\x12\x15\n\ranswer_record\x18\x04 \x01(\t\x12\x1a\n\x12\x63onversation_model\x18\x06 \x01(\t\x1a\x33\n\x11TextSectionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x8b\x03\n\x17\x43onversationParticipant\x12Q\n\x1b\x64ialogflow_participant_name\x18\x05 \x01(\tB*\xfa\x41\'\n%dialogflow.googleapis.com/ParticipantH\x00\x12\x11\n\x07user_id\x18\x06 \x01(\tH\x00\x12\"\n\x16\x64ialogflow_participant\x18\x01 \x01(\tB\x02\x18\x01\x12#\n\x1bobfuscated_external_user_id\x18\x03 \x01(\t\x12Q\n\x04role\x18\x02 \x01(\x0e\x32\x43.google.cloud.contactcenterinsights.v1.ConversationParticipant.Role\"_\n\x04Role\x12\x14\n\x10ROLE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bHUMAN_AGENT\x10\x01\x12\x13\n\x0f\x41UTOMATED_AGENT\x10\x02\x12\x0c\n\x08\x45ND_USER\x10\x03\x12\r\n\tANY_AGENT\x10\x04\x42\r\n\x0bparticipant\"\x90\x02\n\x04View\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\r\n\x05value\x18\x05 \x01(\t:d\xea\x41\x61\n)contactcenterinsights.googleapis.com/View\x12\x34projects/{project}/locations/{location}/views/{view}\"\xfb\t\n\x11\x41nnotatorSelector\x12\"\n\x1arun_interruption_annotator\x18\x01 \x01(\x08\x12\x1d\n\x15run_silence_annotator\x18\x02 \x01(\x08\x12$\n\x1crun_phrase_matcher_annotator\x18\x03 \x01(\x08\x12P\n\x0fphrase_matchers\x18\x04 \x03(\tB7\xfa\x41\x34\n2contactcenterinsights.googleapis.com/PhraseMatcher\x12\x1f\n\x17run_sentiment_annotator\x18\x05 \x01(\x08\x12\x1c\n\x14run_entity_annotator\x18\x06 \x01(\x08\x12\x1c\n\x14run_intent_annotator\x18\x07 \x01(\x08\x12!\n\x19run_issue_model_annotator\x18\x08 \x01(\x08\x12J\n\x0cissue_models\x18\n \x03(\tB4\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\x12#\n\x1brun_summarization_annotator\x18\t \x01(\x08\x12j\n\x14summarization_config\x18\x0b \x01(\x0b\x32L.google.cloud.contactcenterinsights.v1.AnnotatorSelector.SummarizationConfig\x12\x18\n\x10run_qa_annotator\x18\x0c \x01(\x08\x12T\n\tqa_config\x18\r \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.AnnotatorSelector.QaConfig\x1a\xe1\x02\n\x13SummarizationConfig\x12R\n\x14\x63onversation_profile\x18\x01 \x01(\tB2\xfa\x41/\n-dialogflow.googleapis.com/ConversationProfileH\x00\x12~\n\x13summarization_model\x18\x02 \x01(\x0e\x32_.google.cloud.contactcenterinsights.v1.AnnotatorSelector.SummarizationConfig.SummarizationModelH\x00\"f\n\x12SummarizationModel\x12#\n\x1fSUMMARIZATION_MODEL_UNSPECIFIED\x10\x00\x12\x12\n\x0e\x42\x41SELINE_MODEL\x10\x01\x12\x17\n\x13\x42\x41SELINE_MODEL_V2_0\x10\x02\x42\x0e\n\x0cmodel_source\x1a\xf9\x01\n\x08QaConfig\x12i\n\x0escorecard_list\x18\x01 \x01(\x0b\x32O.google.cloud.contactcenterinsights.v1.AnnotatorSelector.QaConfig.ScorecardListH\x00\x1an\n\rScorecardList\x12]\n\x16qa_scorecard_revisions\x18\x01 \x03(\tB=\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevisionB\x12\n\x10scorecard_source\"\xa1\x08\n\nQaQuestion\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x14\n\x0c\x61\x62\x62reviation\x18\x02 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x15\n\rquestion_body\x18\x05 \x01(\t\x12\x1b\n\x13\x61nswer_instructions\x18\t \x01(\t\x12V\n\x0e\x61nswer_choices\x18\x06 \x03(\x0b\x32>.google.cloud.contactcenterinsights.v1.QaQuestion.AnswerChoice\x12\x0c\n\x04tags\x18\x07 \x03(\t\x12\r\n\x05order\x18\x08 \x01(\x05\x12J\n\x07metrics\x18\n \x01(\x0b\x32\x39.google.cloud.contactcenterinsights.v1.QaQuestion.Metrics\x12Y\n\x0ftuning_metadata\x18\x0b \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.QaQuestion.TuningMetadata\x1a\x96\x01\n\x0c\x41nswerChoice\x12\x13\n\tstr_value\x18\x02 \x01(\tH\x00\x12\x13\n\tnum_value\x18\x03 \x01(\x01H\x00\x12\x14\n\nbool_value\x18\x04 \x01(\x08H\x00\x12\x12\n\x08na_value\x18\x05 \x01(\x08H\x00\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\x05score\x18\x06 \x01(\x01H\x01\x88\x01\x01\x42\x07\n\x05valueB\x08\n\x06_score\x1a \n\x07Metrics\x12\x15\n\x08\x61\x63\x63uracy\x18\x01 \x01(\x01\x42\x03\xe0\x41\x03\x1a\xad\x01\n\x0eTuningMetadata\x12\x1f\n\x17total_valid_label_count\x18\x01 \x01(\x03\x12\x64\n\x1b\x64\x61taset_validation_warnings\x18\x02 \x03(\x0e\x32?.google.cloud.contactcenterinsights.v1.DatasetValidationWarning\x12\x14\n\x0ctuning_error\x18\x03 \x01(\t:\xc2\x01\xea\x41\xbe\x01\n/contactcenterinsights.googleapis.com/QaQuestion\x12rprojects/{project}/locations/{location}/qaScorecards/{qa_scorecard}/revisions/{revision}/qaQuestions/{qa_question}*\x0bqaQuestions2\nqaQuestion\"\xd0\x02\n\x0bQaScorecard\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x14\n\x0c\x64isplay_name\x18\x07 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03:\x96\x01\xea\x41\x92\x01\n0contactcenterinsights.googleapis.com/QaScorecard\x12\x43projects/{project}/locations/{location}/qaScorecards/{qa_scorecard}*\x0cqaScorecards2\x0bqaScorecard\"\xdf\x04\n\x13QaScorecardRevision\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x44\n\x08snapshot\x18\x02 \x01(\x0b\x32\x32.google.cloud.contactcenterinsights.v1.QaScorecard\x12\x34\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x1a\n\ralternate_ids\x18\x04 \x03(\tB\x03\xe0\x41\x03\x12T\n\x05state\x18\x05 \x01(\x0e\x32@.google.cloud.contactcenterinsights.v1.QaScorecardRevision.StateB\x03\xe0\x41\x03\"\x80\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x45\x44ITABLE\x10\x0c\x12\x0c\n\x08TRAINING\x10\x02\x12\x13\n\x0fTRAINING_FAILED\x10\t\x12\t\n\x05READY\x10\x0b\x12\x0c\n\x08\x44\x45LETING\x10\x07\x12\x16\n\x12TRAINING_CANCELLED\x10\x0e:\xc3\x01\xea\x41\xbf\x01\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12Xprojects/{project}/locations/{location}/qaScorecards/{qa_scorecard}/revisions/{revision}*\x14qaScorecardRevisions2\x13qaScorecardRevision\"\x92\x07\n\x08QaAnswer\x12I\n\x0bqa_question\x18\x07 \x01(\tB4\xfa\x41\x31\n/contactcenterinsights.googleapis.com/QaQuestion\x12L\n\x0c\x63onversation\x18\x02 \x01(\tB6\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x15\n\rquestion_body\x18\x06 \x01(\t\x12Q\n\x0c\x61nswer_value\x18\x03 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.QaAnswer.AnswerValue\x12\x0c\n\x04tags\x18\x05 \x03(\t\x12T\n\x0e\x61nswer_sources\x18\x08 \x03(\x0b\x32<.google.cloud.contactcenterinsights.v1.QaAnswer.AnswerSource\x1a\x8a\x02\n\x0b\x41nswerValue\x12\x13\n\tstr_value\x18\x02 \x01(\tH\x00\x12\x13\n\tnum_value\x18\x03 \x01(\x01H\x00\x12\x14\n\nbool_value\x18\x04 \x01(\x08H\x00\x12\x12\n\x08na_value\x18\x05 \x01(\x08H\x00\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x17\n\x05score\x18\x06 \x01(\x01\x42\x03\xe0\x41\x03H\x01\x88\x01\x01\x12!\n\x0fpotential_score\x18\x07 \x01(\x01\x42\x03\xe0\x41\x03H\x02\x88\x01\x01\x12\"\n\x10normalized_score\x18\x08 \x01(\x01\x42\x03\xe0\x41\x03H\x03\x88\x01\x01\x42\x07\n\x05valueB\x08\n\x06_scoreB\x12\n\x10_potential_scoreB\x13\n\x11_normalized_score\x1a\x91\x02\n\x0c\x41nswerSource\x12\\\n\x0bsource_type\x18\x01 \x01(\x0e\x32G.google.cloud.contactcenterinsights.v1.QaAnswer.AnswerSource.SourceType\x12Q\n\x0c\x61nswer_value\x18\x02 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.QaAnswer.AnswerValue\"P\n\nSourceType\x12\x1b\n\x17SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10SYSTEM_GENERATED\x10\x01\x12\x0f\n\x0bMANUAL_EDIT\x10\x02\"\xb0\x0b\n\x11QaScorecardResult\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\\\n\x15qa_scorecard_revision\x18\x02 \x01(\tB=\xfa\x41:\n8contactcenterinsights.googleapis.com/QaScorecardRevision\x12L\n\x0c\x63onversation\x18\x03 \x01(\tB6\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x34\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x10\n\x08\x61gent_id\x18\x05 \x01(\t\x12\x43\n\nqa_answers\x18\x06 \x03(\x0b\x32/.google.cloud.contactcenterinsights.v1.QaAnswer\x12\x12\n\x05score\x18\x07 \x01(\x01H\x00\x88\x01\x01\x12\x1c\n\x0fpotential_score\x18\x08 \x01(\x01H\x01\x88\x01\x01\x12\x1d\n\x10normalized_score\x18\t \x01(\x01H\x02\x88\x01\x01\x12\\\n\x0eqa_tag_results\x18\n \x03(\x0b\x32\x44.google.cloud.contactcenterinsights.v1.QaScorecardResult.QaTagResult\x12[\n\rscore_sources\x18\x0b \x03(\x0b\x32\x44.google.cloud.contactcenterinsights.v1.QaScorecardResult.ScoreSource\x1a\x9e\x01\n\x0bQaTagResult\x12\x0b\n\x03tag\x18\x01 \x01(\t\x12\x12\n\x05score\x18\x02 \x01(\x01H\x00\x88\x01\x01\x12\x1c\n\x0fpotential_score\x18\x03 \x01(\x01H\x01\x88\x01\x01\x12\x1d\n\x10normalized_score\x18\x04 \x01(\x01H\x02\x88\x01\x01\x42\x08\n\x06_scoreB\x12\n\x10_potential_scoreB\x13\n\x11_normalized_score\x1a\xb6\x03\n\x0bScoreSource\x12\x64\n\x0bsource_type\x18\x01 \x01(\x0e\x32O.google.cloud.contactcenterinsights.v1.QaScorecardResult.ScoreSource.SourceType\x12\x12\n\x05score\x18\x02 \x01(\x01H\x00\x88\x01\x01\x12\x1c\n\x0fpotential_score\x18\x03 \x01(\x01H\x01\x88\x01\x01\x12\x1d\n\x10normalized_score\x18\x04 \x01(\x01H\x02\x88\x01\x01\x12\\\n\x0eqa_tag_results\x18\x05 \x03(\x0b\x32\x44.google.cloud.contactcenterinsights.v1.QaScorecardResult.QaTagResult\"_\n\nSourceType\x12\x1b\n\x17SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15SYSTEM_GENERATED_ONLY\x10\x01\x12\x19\n\x15INCLUDES_MANUAL_EDITS\x10\x02\x42\x08\n\x06_scoreB\x12\n\x10_potential_scoreB\x13\n\x11_normalized_score:\xb5\x01\xea\x41\xb1\x01\n6contactcenterinsights.googleapis.com/QaScorecardResult\x12Pprojects/{project}/locations/{location}/qaScorecardResults/{qa_scorecard_result}*\x12qaScorecardResults2\x11qaScorecardResultB\x08\n\x06_scoreB\x12\n\x10_potential_scoreB\x13\n\x11_normalized_score*\xe9\x01\n\x18\x44\x61tasetValidationWarning\x12*\n&DATASET_VALIDATION_WARNING_UNSPECIFIED\x10\x00\x12$\n TOO_MANY_INVALID_FEEDBACK_LABELS\x10\x01\x12 \n\x1cINSUFFICIENT_FEEDBACK_LABELS\x10\x02\x12+\n\'INSUFFICIENT_FEEDBACK_LABELS_PER_ANSWER\x10\x03\x12,\n(ALL_FEEDBACK_LABELS_HAVE_THE_SAME_ANSWER\x10\x04\x42\xe0\x05\n)com.google.cloud.contactcenterinsights.v1B\x0eResourcesProtoP\x01Z_cloud.google.com/go/contactcenterinsights/apiv1/contactcenterinsightspb;contactcenterinsightspb\xaa\x02%Google.Cloud.ContactCenterInsights.V1\xca\x02%Google\\Cloud\\ContactCenterInsights\\V1\xea\x02(Google::Cloud::ContactCenterInsights::V1\xea\x41\x84\x01\n-dialogflow.googleapis.com/ConversationProfile\x12Sprojects/{project}/locations/{location}/conversationProfiles/{conversation_profile}\xea\x41\xd4\x01\n%dialogflow.googleapis.com/Participant\x12Jprojects/{project}/conversations/{conversation}/participants/{participant}\x12_projects/{project}/locations/{location}/conversations/{conversation}/participants/{participant}\xea\x41\x64\n speech.googleapis.com/Recognizer\x12@projects/{project}/locations/{location}/recognizers/{recognizer}b\x06proto3"
|
14
14
|
|
15
15
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
16
16
|
|
@@ -147,6 +147,9 @@ module Google
|
|
147
147
|
# @return [::String]
|
148
148
|
# A user-provided string indicating the outcome of the agent's segment of
|
149
149
|
# the call.
|
150
|
+
# @!attribute [rw] agent_type
|
151
|
+
# @return [::Google::Cloud::ContactCenterInsights::V1::ConversationParticipant::Role]
|
152
|
+
# The agent type, e.g. HUMAN_AGENT.
|
150
153
|
class AgentInfo
|
151
154
|
include ::Google::Protobuf::MessageExts
|
152
155
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-contact_center_insights-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.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:
|
11
|
+
date: 2025-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|