google-cloud-contact_center_insights-v1 0.17.0 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ea04a7fac1410870238da1d922faf65a9a0e6b6f73e5f52b7a5ce6753f6dd7d
4
- data.tar.gz: 24ce11d564f38d70eb355240f99ff0480ef043f8137b74fefa9912eb08007629
3
+ metadata.gz: 648ca1323ca88fcbbbe9e3efae42083a507aacf3bcd365294d51d4444e7d0185
4
+ data.tar.gz: 43dec5c6f36011d5cb6eebad39a9630877dd58f581c594805bb0ba1041e26add
5
5
  SHA512:
6
- metadata.gz: e06429f71f81682fddf24cd3dba7391cb38cec4ceb8fc529b7cfaa288707b743f470ef7852000a6a7b5523cb028f8e794d7d751ea8314b13d82f1bb47cac0e3e
7
- data.tar.gz: d8f0bf645d68a843119172fa8507b1989b2d73725f4b703c4e2003820b0db10bda463196abff5c6b777fdde22d77f10a733b3e74cd52861e9cb8266acb2d3498
6
+ metadata.gz: 46cf53baa050f50f2095591831ea5e685de9ca4482383195df04a09c2d0be8e0f0a26569dc92ea623f78dd4f23163c373479d4495f75777204d19b57f715483e
7
+ data.tar.gz: d15f5e1a4df97a8ed5f481e206376b00e4f4cc1138fc3564a0fcdb6bda1446808d2c1506926fb5cce1fb6ab38db0d428288d81e79152f3e197644f62eb0cc1fa
@@ -272,7 +272,7 @@ module Google
272
272
  # @param options [::Gapic::CallOptions, ::Hash]
273
273
  # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
274
274
  #
275
- # @overload upload_conversation(parent: nil, conversation: nil, conversation_id: nil, redaction_config: nil)
275
+ # @overload upload_conversation(parent: nil, conversation: nil, conversation_id: nil, redaction_config: nil, speech_config: nil)
276
276
  # Pass arguments to `upload_conversation` via keyword arguments. Note that at
277
277
  # least one keyword argument is required. To specify no parameters, or to keep all
278
278
  # the default parameter values, pass an empty Hash as a request object (see above).
@@ -291,6 +291,9 @@ module Google
291
291
  # @param redaction_config [::Google::Cloud::ContactCenterInsights::V1::RedactionConfig, ::Hash]
292
292
  # Optional. DLP settings for transcript redaction. Optional, will default to
293
293
  # the config specified in Settings.
294
+ # @param speech_config [::Google::Cloud::ContactCenterInsights::V1::SpeechConfig, ::Hash]
295
+ # Optional. Default Speech-to-Text configuration. Optional, will default to
296
+ # the config specified in Settings.
294
297
  #
295
298
  # @yield [response, operation] Access the result along with the RPC operation
296
299
  # @yieldparam response [::Gapic::Operation]
@@ -1220,7 +1223,8 @@ module Google
1220
1223
  # the default parameter values, pass an empty Hash as a request object (see above).
1221
1224
  #
1222
1225
  # @param gcs_source [::Google::Cloud::ContactCenterInsights::V1::IngestConversationsRequest::GcsSource, ::Hash]
1223
- # A cloud storage bucket source.
1226
+ # A cloud storage bucket source. Note that any previously ingested objects
1227
+ # from the source will be skipped to avoid duplication.
1224
1228
  # @param transcript_object_config [::Google::Cloud::ContactCenterInsights::V1::IngestConversationsRequest::TranscriptObjectConfig, ::Hash]
1225
1229
  # Configuration for when `source` contains conversation transcripts.
1226
1230
  # @param parent [::String]
@@ -204,6 +204,25 @@ module Google
204
204
  "projects/#{project}/locations/#{location}/phraseMatchers/#{phrase_matcher}"
205
205
  end
206
206
 
207
+ ##
208
+ # Create a fully-qualified Recognizer resource string.
209
+ #
210
+ # The resource will be in the following format:
211
+ #
212
+ # `projects/{project}/locations/{location}/recognizers/{recognizer}`
213
+ #
214
+ # @param project [String]
215
+ # @param location [String]
216
+ # @param recognizer [String]
217
+ #
218
+ # @return [::String]
219
+ def recognizer_path project:, location:, recognizer:
220
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
221
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
222
+
223
+ "projects/#{project}/locations/#{location}/recognizers/#{recognizer}"
224
+ end
225
+
207
226
  ##
208
227
  # Create a fully-qualified Settings resource string.
209
228
  #
@@ -255,7 +255,7 @@ module Google
255
255
  # @param options [::Gapic::CallOptions, ::Hash]
256
256
  # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
257
257
  #
258
- # @overload upload_conversation(parent: nil, conversation: nil, conversation_id: nil, redaction_config: nil)
258
+ # @overload upload_conversation(parent: nil, conversation: nil, conversation_id: nil, redaction_config: nil, speech_config: nil)
259
259
  # Pass arguments to `upload_conversation` via keyword arguments. Note that at
260
260
  # least one keyword argument is required. To specify no parameters, or to keep all
261
261
  # the default parameter values, pass an empty Hash as a request object (see above).
@@ -274,6 +274,9 @@ module Google
274
274
  # @param redaction_config [::Google::Cloud::ContactCenterInsights::V1::RedactionConfig, ::Hash]
275
275
  # Optional. DLP settings for transcript redaction. Optional, will default to
276
276
  # the config specified in Settings.
277
+ # @param speech_config [::Google::Cloud::ContactCenterInsights::V1::SpeechConfig, ::Hash]
278
+ # Optional. Default Speech-to-Text configuration. Optional, will default to
279
+ # the config specified in Settings.
277
280
  # @yield [result, operation] Access the result along with the TransportOperation object
278
281
  # @yieldparam result [::Gapic::Operation]
279
282
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
@@ -1133,7 +1136,8 @@ module Google
1133
1136
  # the default parameter values, pass an empty Hash as a request object (see above).
1134
1137
  #
1135
1138
  # @param gcs_source [::Google::Cloud::ContactCenterInsights::V1::IngestConversationsRequest::GcsSource, ::Hash]
1136
- # A cloud storage bucket source.
1139
+ # A cloud storage bucket source. Note that any previously ingested objects
1140
+ # from the source will be skipped to avoid duplication.
1137
1141
  # @param transcript_object_config [::Google::Cloud::ContactCenterInsights::V1::IngestConversationsRequest::TranscriptObjectConfig, ::Hash]
1138
1142
  # Configuration for when `source` contains conversation transcripts.
1139
1143
  # @param parent [::String]
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module ContactCenterInsights
23
23
  module V1
24
- VERSION = "0.17.0"
24
+ VERSION = "0.18.0"
25
25
  end
26
26
  end
27
27
  end
@@ -17,7 +17,7 @@ require 'google/protobuf/timestamp_pb'
17
17
  require 'google/rpc/status_pb'
18
18
 
19
19
 
20
- 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\"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\"\x9b\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\"\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\"\xd3\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\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\"\xff\x04\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\x1a$\n\tGcsSource\x12\x17\n\nbucket_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x1ai\n\x16TranscriptObjectConfig\x12O\n\x06medium\x18\x01 \x01(\x0e\x32:.google.cloud.contactcenterinsights.v1.Conversation.MediumB\x03\xe0\x41\x02\x1a&\n\x12\x43onversationConfig\x12\x10\n\x08\x61gent_id\x18\x01 \x01(\tB\x08\n\x06sourceB\x0f\n\robject_config\"\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\"\xc3\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\"d\n BulkAnalyzeConversationsResponse\x12!\n\x19successful_analysis_count\x18\x01 \x01(\x05\x12\x1d\n\x15\x66\x61iled_analysis_count\x18\x02 \x01(\x05\"\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\"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\"\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*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\xbb\x42\n\x15\x43ontactCenterInsights\x12\xfa\x01\n\x12\x43reateConversation\x12@.google.cloud.contactcenterinsights.v1.CreateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"m\x82\xd3\xe4\x93\x02\x41\"1/v1/{parent=projects/*/locations/*}/conversations:\x0c\x63onversation\xda\x41#parent,conversation,conversation_id\x12\xe7\x01\n\x12UploadConversation\x12@.google.cloud.contactcenterinsights.v1.UploadConversationRequest\x1a\x1d.google.longrunning.Operation\"p\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:upload:\x01*\xca\x41*\n\x0c\x43onversation\x12\x1aUploadConversationMetadata\x12\xfc\x01\n\x12UpdateConversation\x12@.google.cloud.contactcenterinsights.v1.UpdateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"o\x82\xd3\xe4\x93\x02N2>/v1/{conversation.name=projects/*/locations/*/conversations/*}:\x0c\x63onversation\xda\x41\x18\x63onversation,update_mask\x12\xc7\x01\n\x0fGetConversation\x12=.google.cloud.contactcenterinsights.v1.GetConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"@\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/conversations/*}\xda\x41\x04name\x12\xda\x01\n\x11ListConversations\x12?.google.cloud.contactcenterinsights.v1.ListConversationsRequest\x1a@.google.cloud.contactcenterinsights.v1.ListConversationsResponse\"B\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/conversations\xda\x41\x06parent\x12\xb0\x01\n\x12\x44\x65leteConversation\x12@.google.cloud.contactcenterinsights.v1.DeleteConversationRequest\x1a\x16.google.protobuf.Empty\"@\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/conversations/*}\xda\x41\x04name\x12\xfe\x01\n\x0e\x43reateAnalysis\x12<.google.cloud.contactcenterinsights.v1.CreateAnalysisRequest\x1a\x1d.google.longrunning.Operation\"\x8e\x01\x82\xd3\xe4\x93\x02H\"</v1/{parent=projects/*/locations/*/conversations/*}/analyses:\x08\x61nalysis\xda\x41\x0fparent,analysis\xca\x41+\n\x08\x41nalysis\x12\x1f\x43reateAnalysisOperationMetadata\x12\xc6\x01\n\x0bGetAnalysis\x12\x39.google.cloud.contactcenterinsights.v1.GetAnalysisRequest\x1a/.google.cloud.contactcenterinsights.v1.Analysis\"K\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\xda\x41\x04name\x12\xd6\x01\n\x0cListAnalyses\x12:.google.cloud.contactcenterinsights.v1.ListAnalysesRequest\x1a;.google.cloud.contactcenterinsights.v1.ListAnalysesResponse\"M\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/conversations/*}/analyses\xda\x41\x06parent\x12\xb3\x01\n\x0e\x44\x65leteAnalysis\x12<.google.cloud.contactcenterinsights.v1.DeleteAnalysisRequest\x1a\x16.google.protobuf.Empty\"K\x82\xd3\xe4\x93\x02>*</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\xda\x41\x04name\x12\xb7\x02\n\x18\x42ulkAnalyzeConversations\x12\x46.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest\x1a\x1d.google.longrunning.Operation\"\xb3\x01\x82\xd3\xe4\x93\x02\x42\"=/v1/{parent=projects/*/locations/*}/conversations:bulkAnalyze:\x01*\xda\x41!parent,filter,analysis_percentage\xca\x41\x44\n BulkAnalyzeConversationsResponse\x12 BulkAnalyzeConversationsMetadata\x12\x83\x02\n\x13IngestConversations\x12\x41.google.cloud.contactcenterinsights.v1.IngestConversationsRequest\x1a\x1d.google.longrunning.Operation\"\x89\x01\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:ingest:\x01*\xda\x41\x06parent\xca\x41:\n\x1bIngestConversationsResponse\x12\x1bIngestConversationsMetadata\x12\xfe\x01\n\x12\x45xportInsightsData\x12@.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\x82\xd3\xe4\x93\x02<\"7/v1/{parent=projects/*/locations/*}/insightsdata:export:\x01*\xda\x41\x06parent\xca\x41\x38\n\x1a\x45xportInsightsDataResponse\x12\x1a\x45xportInsightsDataMetadata\x12\xf6\x01\n\x10\x43reateIssueModel\x12>.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x82\x01\x82\xd3\xe4\x93\x02>\"//v1/{parent=projects/*/locations/*}/issueModels:\x0bissue_model\xda\x41\x12parent,issue_model\xca\x41&\n\nIssueModel\x12\x18\x43reateIssueModelMetadata\x12\xf1\x01\n\x10UpdateIssueModel\x12>.google.cloud.contactcenterinsights.v1.UpdateIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\"j\x82\xd3\xe4\x93\x02J2;/v1/{issue_model.name=projects/*/locations/*/issueModels/*}:\x0bissue_model\xda\x41\x17issue_model,update_mask\x12\xbf\x01\n\rGetIssueModel\x12;.google.cloud.contactcenterinsights.v1.GetIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\">\x82\xd3\xe4\x93\x02\x31\x12//v1/{name=projects/*/locations/*/issueModels/*}\xda\x41\x04name\x12\xd2\x01\n\x0fListIssueModels\x12=.google.cloud.contactcenterinsights.v1.ListIssueModelsRequest\x1a>.google.cloud.contactcenterinsights.v1.ListIssueModelsResponse\"@\x82\xd3\xe4\x93\x02\x31\x12//v1/{parent=projects/*/locations/*}/issueModels\xda\x41\x06parent\x12\xe5\x01\n\x10\x44\x65leteIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest\x1a\x1d.google.longrunning.Operation\"r\x82\xd3\xe4\x93\x02\x31*//v1/{name=projects/*/locations/*/issueModels/*}\xda\x41\x04name\xca\x41\x31\n\x15google.protobuf.Empty\x12\x18\x44\x65leteIssueModelMetadata\x12\xf2\x01\n\x10\x44\x65ployIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x7f\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/issueModels/*}:deploy:\x01*\xda\x41\x04name\xca\x41\x34\n\x18\x44\x65ployIssueModelResponse\x12\x18\x44\x65ployIssueModelMetadata\x12\xfd\x01\n\x12UndeployIssueModel\x12@.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x85\x01\x82\xd3\xe4\x93\x02=\"8/v1/{name=projects/*/locations/*/issueModels/*}:undeploy:\x01*\xda\x41\x04name\xca\x41\x38\n\x1aUndeployIssueModelResponse\x12\x1aUndeployIssueModelMetadata\x12\xb9\x01\n\x08GetIssue\x12\x36.google.cloud.contactcenterinsights.v1.GetIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"G\x82\xd3\xe4\x93\x02:\x12\x38/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\xda\x41\x04name\x12\xcc\x01\n\nListIssues\x12\x38.google.cloud.contactcenterinsights.v1.ListIssuesRequest\x1a\x39.google.cloud.contactcenterinsights.v1.ListIssuesResponse\"I\x82\xd3\xe4\x93\x02:\x12\x38/v1/{parent=projects/*/locations/*/issueModels/*}/issues\xda\x41\x06parent\x12\xd9\x01\n\x0bUpdateIssue\x12\x39.google.cloud.contactcenterinsights.v1.UpdateIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"a\x82\xd3\xe4\x93\x02G2>/v1/{issue.name=projects/*/locations/*/issueModels/*/issues/*}:\x05issue\xda\x41\x11issue,update_mask\x12\xa9\x01\n\x0b\x44\x65leteIssue\x12\x39.google.cloud.contactcenterinsights.v1.DeleteIssueRequest\x1a\x16.google.protobuf.Empty\"G\x82\xd3\xe4\x93\x02:*8/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\xda\x41\x04name\x12\x92\x02\n\x18\x43\x61lculateIssueModelStats\x12\x46.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsRequest\x1aG.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsResponse\"e\x82\xd3\xe4\x93\x02Q\x12O/v1/{issue_model=projects/*/locations/*/issueModels/*}:calculateIssueModelStats\xda\x41\x0bissue_model\x12\xf2\x01\n\x13\x43reatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.CreatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"b\x82\xd3\xe4\x93\x02\x44\"2/v1/{parent=projects/*/locations/*}/phraseMatchers:\x0ephrase_matcher\xda\x41\x15parent,phrase_matcher\x12\xcb\x01\n\x10GetPhraseMatcher\x12>.google.cloud.contactcenterinsights.v1.GetPhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"A\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{name=projects/*/locations/*/phraseMatchers/*}\xda\x41\x04name\x12\xde\x01\n\x12ListPhraseMatchers\x12@.google.cloud.contactcenterinsights.v1.ListPhraseMatchersRequest\x1a\x41.google.cloud.contactcenterinsights.v1.ListPhraseMatchersResponse\"C\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{parent=projects/*/locations/*}/phraseMatchers\xda\x41\x06parent\x12\xb3\x01\n\x13\x44\x65letePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest\x1a\x16.google.protobuf.Empty\"A\x82\xd3\xe4\x93\x02\x34*2/v1/{name=projects/*/locations/*/phraseMatchers/*}\xda\x41\x04name\x12\x86\x02\n\x13UpdatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.UpdatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"v\x82\xd3\xe4\x93\x02S2A/v1/{phrase_matcher.name=projects/*/locations/*/phraseMatchers/*}:\x0ephrase_matcher\xda\x41\x1aphrase_matcher,update_mask\x12\xe4\x01\n\x0e\x43\x61lculateStats\x12<.google.cloud.contactcenterinsights.v1.CalculateStatsRequest\x1a=.google.cloud.contactcenterinsights.v1.CalculateStatsResponse\"U\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{location=projects/*/locations/*}/conversations:calculateStats\xda\x41\x08location\x12\xb4\x01\n\x0bGetSettings\x12\x39.google.cloud.contactcenterinsights.v1.GetSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"9\x82\xd3\xe4\x93\x02,\x12*/v1/{name=projects/*/locations/*/settings}\xda\x41\x04name\x12\xdd\x01\n\x0eUpdateSettings\x12<.google.cloud.contactcenterinsights.v1.UpdateSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"\\\x82\xd3\xe4\x93\x02?23/v1/{settings.name=projects/*/locations/*/settings}:\x08settings\xda\x41\x14settings,update_mask\x12\xba\x01\n\nCreateView\x12\x38.google.cloud.contactcenterinsights.v1.CreateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"E\x82\xd3\xe4\x93\x02\x31\")/v1/{parent=projects/*/locations/*}/views:\x04view\xda\x41\x0bparent,view\x12\xa7\x01\n\x07GetView\x12\x35.google.cloud.contactcenterinsights.v1.GetViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"8\x82\xd3\xe4\x93\x02+\x12)/v1/{name=projects/*/locations/*/views/*}\xda\x41\x04name\x12\xba\x01\n\tListViews\x12\x37.google.cloud.contactcenterinsights.v1.ListViewsRequest\x1a\x38.google.cloud.contactcenterinsights.v1.ListViewsResponse\":\x82\xd3\xe4\x93\x02+\x12)/v1/{parent=projects/*/locations/*}/views\xda\x41\x06parent\x12\xc4\x01\n\nUpdateView\x12\x38.google.cloud.contactcenterinsights.v1.UpdateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"O\x82\xd3\xe4\x93\x02\x36\x32./v1/{view.name=projects/*/locations/*/views/*}:\x04view\xda\x41\x10view,update_mask\x12\x98\x01\n\nDeleteView\x12\x38.google.cloud.contactcenterinsights.v1.DeleteViewRequest\x1a\x16.google.protobuf.Empty\"8\x82\xd3\xe4\x93\x02+*)/v1/{name=projects/*/locations/*/views/*}\xda\x41\x04name\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"
20
+ 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\"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\"\xd3\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\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\"\xff\x04\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\x1a$\n\tGcsSource\x12\x17\n\nbucket_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x1ai\n\x16TranscriptObjectConfig\x12O\n\x06medium\x18\x01 \x01(\x0e\x32:.google.cloud.contactcenterinsights.v1.Conversation.MediumB\x03\xe0\x41\x02\x1a&\n\x12\x43onversationConfig\x12\x10\n\x08\x61gent_id\x18\x01 \x01(\tB\x08\n\x06sourceB\x0f\n\robject_config\"\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\"\xc3\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\"d\n BulkAnalyzeConversationsResponse\x12!\n\x19successful_analysis_count\x18\x01 \x01(\x05\x12\x1d\n\x15\x66\x61iled_analysis_count\x18\x02 \x01(\x05\"\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\"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\"\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*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\xbb\x42\n\x15\x43ontactCenterInsights\x12\xfa\x01\n\x12\x43reateConversation\x12@.google.cloud.contactcenterinsights.v1.CreateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"m\x82\xd3\xe4\x93\x02\x41\"1/v1/{parent=projects/*/locations/*}/conversations:\x0c\x63onversation\xda\x41#parent,conversation,conversation_id\x12\xe7\x01\n\x12UploadConversation\x12@.google.cloud.contactcenterinsights.v1.UploadConversationRequest\x1a\x1d.google.longrunning.Operation\"p\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:upload:\x01*\xca\x41*\n\x0c\x43onversation\x12\x1aUploadConversationMetadata\x12\xfc\x01\n\x12UpdateConversation\x12@.google.cloud.contactcenterinsights.v1.UpdateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"o\x82\xd3\xe4\x93\x02N2>/v1/{conversation.name=projects/*/locations/*/conversations/*}:\x0c\x63onversation\xda\x41\x18\x63onversation,update_mask\x12\xc7\x01\n\x0fGetConversation\x12=.google.cloud.contactcenterinsights.v1.GetConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"@\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/conversations/*}\xda\x41\x04name\x12\xda\x01\n\x11ListConversations\x12?.google.cloud.contactcenterinsights.v1.ListConversationsRequest\x1a@.google.cloud.contactcenterinsights.v1.ListConversationsResponse\"B\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/conversations\xda\x41\x06parent\x12\xb0\x01\n\x12\x44\x65leteConversation\x12@.google.cloud.contactcenterinsights.v1.DeleteConversationRequest\x1a\x16.google.protobuf.Empty\"@\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/conversations/*}\xda\x41\x04name\x12\xfe\x01\n\x0e\x43reateAnalysis\x12<.google.cloud.contactcenterinsights.v1.CreateAnalysisRequest\x1a\x1d.google.longrunning.Operation\"\x8e\x01\x82\xd3\xe4\x93\x02H\"</v1/{parent=projects/*/locations/*/conversations/*}/analyses:\x08\x61nalysis\xda\x41\x0fparent,analysis\xca\x41+\n\x08\x41nalysis\x12\x1f\x43reateAnalysisOperationMetadata\x12\xc6\x01\n\x0bGetAnalysis\x12\x39.google.cloud.contactcenterinsights.v1.GetAnalysisRequest\x1a/.google.cloud.contactcenterinsights.v1.Analysis\"K\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\xda\x41\x04name\x12\xd6\x01\n\x0cListAnalyses\x12:.google.cloud.contactcenterinsights.v1.ListAnalysesRequest\x1a;.google.cloud.contactcenterinsights.v1.ListAnalysesResponse\"M\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/conversations/*}/analyses\xda\x41\x06parent\x12\xb3\x01\n\x0e\x44\x65leteAnalysis\x12<.google.cloud.contactcenterinsights.v1.DeleteAnalysisRequest\x1a\x16.google.protobuf.Empty\"K\x82\xd3\xe4\x93\x02>*</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\xda\x41\x04name\x12\xb7\x02\n\x18\x42ulkAnalyzeConversations\x12\x46.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest\x1a\x1d.google.longrunning.Operation\"\xb3\x01\x82\xd3\xe4\x93\x02\x42\"=/v1/{parent=projects/*/locations/*}/conversations:bulkAnalyze:\x01*\xda\x41!parent,filter,analysis_percentage\xca\x41\x44\n BulkAnalyzeConversationsResponse\x12 BulkAnalyzeConversationsMetadata\x12\x83\x02\n\x13IngestConversations\x12\x41.google.cloud.contactcenterinsights.v1.IngestConversationsRequest\x1a\x1d.google.longrunning.Operation\"\x89\x01\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:ingest:\x01*\xda\x41\x06parent\xca\x41:\n\x1bIngestConversationsResponse\x12\x1bIngestConversationsMetadata\x12\xfe\x01\n\x12\x45xportInsightsData\x12@.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\x82\xd3\xe4\x93\x02<\"7/v1/{parent=projects/*/locations/*}/insightsdata:export:\x01*\xda\x41\x06parent\xca\x41\x38\n\x1a\x45xportInsightsDataResponse\x12\x1a\x45xportInsightsDataMetadata\x12\xf6\x01\n\x10\x43reateIssueModel\x12>.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x82\x01\x82\xd3\xe4\x93\x02>\"//v1/{parent=projects/*/locations/*}/issueModels:\x0bissue_model\xda\x41\x12parent,issue_model\xca\x41&\n\nIssueModel\x12\x18\x43reateIssueModelMetadata\x12\xf1\x01\n\x10UpdateIssueModel\x12>.google.cloud.contactcenterinsights.v1.UpdateIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\"j\x82\xd3\xe4\x93\x02J2;/v1/{issue_model.name=projects/*/locations/*/issueModels/*}:\x0bissue_model\xda\x41\x17issue_model,update_mask\x12\xbf\x01\n\rGetIssueModel\x12;.google.cloud.contactcenterinsights.v1.GetIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\">\x82\xd3\xe4\x93\x02\x31\x12//v1/{name=projects/*/locations/*/issueModels/*}\xda\x41\x04name\x12\xd2\x01\n\x0fListIssueModels\x12=.google.cloud.contactcenterinsights.v1.ListIssueModelsRequest\x1a>.google.cloud.contactcenterinsights.v1.ListIssueModelsResponse\"@\x82\xd3\xe4\x93\x02\x31\x12//v1/{parent=projects/*/locations/*}/issueModels\xda\x41\x06parent\x12\xe5\x01\n\x10\x44\x65leteIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest\x1a\x1d.google.longrunning.Operation\"r\x82\xd3\xe4\x93\x02\x31*//v1/{name=projects/*/locations/*/issueModels/*}\xda\x41\x04name\xca\x41\x31\n\x15google.protobuf.Empty\x12\x18\x44\x65leteIssueModelMetadata\x12\xf2\x01\n\x10\x44\x65ployIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x7f\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/issueModels/*}:deploy:\x01*\xda\x41\x04name\xca\x41\x34\n\x18\x44\x65ployIssueModelResponse\x12\x18\x44\x65ployIssueModelMetadata\x12\xfd\x01\n\x12UndeployIssueModel\x12@.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x85\x01\x82\xd3\xe4\x93\x02=\"8/v1/{name=projects/*/locations/*/issueModels/*}:undeploy:\x01*\xda\x41\x04name\xca\x41\x38\n\x1aUndeployIssueModelResponse\x12\x1aUndeployIssueModelMetadata\x12\xb9\x01\n\x08GetIssue\x12\x36.google.cloud.contactcenterinsights.v1.GetIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"G\x82\xd3\xe4\x93\x02:\x12\x38/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\xda\x41\x04name\x12\xcc\x01\n\nListIssues\x12\x38.google.cloud.contactcenterinsights.v1.ListIssuesRequest\x1a\x39.google.cloud.contactcenterinsights.v1.ListIssuesResponse\"I\x82\xd3\xe4\x93\x02:\x12\x38/v1/{parent=projects/*/locations/*/issueModels/*}/issues\xda\x41\x06parent\x12\xd9\x01\n\x0bUpdateIssue\x12\x39.google.cloud.contactcenterinsights.v1.UpdateIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"a\x82\xd3\xe4\x93\x02G2>/v1/{issue.name=projects/*/locations/*/issueModels/*/issues/*}:\x05issue\xda\x41\x11issue,update_mask\x12\xa9\x01\n\x0b\x44\x65leteIssue\x12\x39.google.cloud.contactcenterinsights.v1.DeleteIssueRequest\x1a\x16.google.protobuf.Empty\"G\x82\xd3\xe4\x93\x02:*8/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\xda\x41\x04name\x12\x92\x02\n\x18\x43\x61lculateIssueModelStats\x12\x46.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsRequest\x1aG.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsResponse\"e\x82\xd3\xe4\x93\x02Q\x12O/v1/{issue_model=projects/*/locations/*/issueModels/*}:calculateIssueModelStats\xda\x41\x0bissue_model\x12\xf2\x01\n\x13\x43reatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.CreatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"b\x82\xd3\xe4\x93\x02\x44\"2/v1/{parent=projects/*/locations/*}/phraseMatchers:\x0ephrase_matcher\xda\x41\x15parent,phrase_matcher\x12\xcb\x01\n\x10GetPhraseMatcher\x12>.google.cloud.contactcenterinsights.v1.GetPhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"A\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{name=projects/*/locations/*/phraseMatchers/*}\xda\x41\x04name\x12\xde\x01\n\x12ListPhraseMatchers\x12@.google.cloud.contactcenterinsights.v1.ListPhraseMatchersRequest\x1a\x41.google.cloud.contactcenterinsights.v1.ListPhraseMatchersResponse\"C\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{parent=projects/*/locations/*}/phraseMatchers\xda\x41\x06parent\x12\xb3\x01\n\x13\x44\x65letePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest\x1a\x16.google.protobuf.Empty\"A\x82\xd3\xe4\x93\x02\x34*2/v1/{name=projects/*/locations/*/phraseMatchers/*}\xda\x41\x04name\x12\x86\x02\n\x13UpdatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.UpdatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"v\x82\xd3\xe4\x93\x02S2A/v1/{phrase_matcher.name=projects/*/locations/*/phraseMatchers/*}:\x0ephrase_matcher\xda\x41\x1aphrase_matcher,update_mask\x12\xe4\x01\n\x0e\x43\x61lculateStats\x12<.google.cloud.contactcenterinsights.v1.CalculateStatsRequest\x1a=.google.cloud.contactcenterinsights.v1.CalculateStatsResponse\"U\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{location=projects/*/locations/*}/conversations:calculateStats\xda\x41\x08location\x12\xb4\x01\n\x0bGetSettings\x12\x39.google.cloud.contactcenterinsights.v1.GetSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"9\x82\xd3\xe4\x93\x02,\x12*/v1/{name=projects/*/locations/*/settings}\xda\x41\x04name\x12\xdd\x01\n\x0eUpdateSettings\x12<.google.cloud.contactcenterinsights.v1.UpdateSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"\\\x82\xd3\xe4\x93\x02?23/v1/{settings.name=projects/*/locations/*/settings}:\x08settings\xda\x41\x14settings,update_mask\x12\xba\x01\n\nCreateView\x12\x38.google.cloud.contactcenterinsights.v1.CreateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"E\x82\xd3\xe4\x93\x02\x31\")/v1/{parent=projects/*/locations/*}/views:\x04view\xda\x41\x0bparent,view\x12\xa7\x01\n\x07GetView\x12\x35.google.cloud.contactcenterinsights.v1.GetViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"8\x82\xd3\xe4\x93\x02+\x12)/v1/{name=projects/*/locations/*/views/*}\xda\x41\x04name\x12\xba\x01\n\tListViews\x12\x37.google.cloud.contactcenterinsights.v1.ListViewsRequest\x1a\x38.google.cloud.contactcenterinsights.v1.ListViewsResponse\":\x82\xd3\xe4\x93\x02+\x12)/v1/{parent=projects/*/locations/*}/views\xda\x41\x06parent\x12\xc4\x01\n\nUpdateView\x12\x38.google.cloud.contactcenterinsights.v1.UpdateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"O\x82\xd3\xe4\x93\x02\x36\x32./v1/{view.name=projects/*/locations/*/views/*}:\x04view\xda\x41\x10view,update_mask\x12\x98\x01\n\nDeleteView\x12\x38.google.cloud.contactcenterinsights.v1.DeleteViewRequest\x1a\x16.google.protobuf.Empty\"8\x82\xd3\xe4\x93\x02+*)/v1/{name=projects/*/locations/*/views/*}\xda\x41\x04name\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
21
 
22
22
  pool = Google::Protobuf::DescriptorPool.generated_pool
23
23
 
@@ -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\"\x9e\x14\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\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\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:|\xea\x41y\n1contactcenterinsights.googleapis.com/Conversation\x12\x44projects/{project}/locations/{location}/conversations/{conversation}B\n\n\x08metadataB\x0c\n\nexpiration\"\xc5\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:\x8d\x01\xea\x41\x89\x01\n-contactcenterinsights.googleapis.com/Analysis\x12Xprojects/{project}/locations/{location}/conversations/{conversation}/analyses/{analysis}\"\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\"\xc6\x08\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\x8b\x07\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\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\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\"\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\"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}\"\xc0\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:\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\"\xeb\x06\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\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\"H\n\x0fRedactionConfig\x12\x1b\n\x13\x64\x65identify_template\x18\x01 \x01(\t\x12\x18\n\x10inspect_template\x18\x02 \x01(\t\"\x99\x07\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.AnswerFeedbackB\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}\"\xf6\x06\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\x1a\xc8\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\"M\n\x12SummarizationModel\x12#\n\x1fSUMMARIZATION_MODEL_UNSPECIFIED\x10\x00\x12\x12\n\x0e\x42\x41SELINE_MODEL\x10\x01\x42\x0e\n\x0cmodel_sourceB\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\"\x9e\x14\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\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\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:|\xea\x41y\n1contactcenterinsights.googleapis.com/Conversation\x12\x44projects/{project}/locations/{location}/conversations/{conversation}B\n\n\x08metadataB\x0c\n\nexpiration\"\xc5\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:\x8d\x01\xea\x41\x89\x01\n-contactcenterinsights.googleapis.com/Analysis\x12Xprojects/{project}/locations/{location}/conversations/{conversation}/analyses/{analysis}\"\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\"\xc6\x08\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\x8b\x07\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\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\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\"\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\"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}\"\xc0\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:\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\"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\"\x99\x07\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.AnswerFeedbackB\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}\"\xf6\x06\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\x1a\xc8\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\"M\n\x12SummarizationModel\x12#\n\x1fSUMMARIZATION_MODEL_UNSPECIFIED\x10\x00\x12\x12\n\x0e\x42\x41SELINE_MODEL\x10\x01\x42\x0e\n\x0cmodel_sourceB\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
 
@@ -90,6 +90,7 @@ module Google
90
90
  Settings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.Settings").msgclass
91
91
  Settings::AnalysisConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.Settings.AnalysisConfig").msgclass
92
92
  RedactionConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.RedactionConfig").msgclass
93
+ SpeechConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.SpeechConfig").msgclass
93
94
  RuntimeAnnotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.RuntimeAnnotation").msgclass
94
95
  AnswerFeedback = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.AnswerFeedback").msgclass
95
96
  AnswerFeedback::CorrectnessLevel = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.AnswerFeedback.CorrectnessLevel").enummodule
@@ -192,6 +192,10 @@ module Google
192
192
  # @return [::Google::Cloud::ContactCenterInsights::V1::RedactionConfig]
193
193
  # Optional. DLP settings for transcript redaction. Optional, will default to
194
194
  # the config specified in Settings.
195
+ # @!attribute [rw] speech_config
196
+ # @return [::Google::Cloud::ContactCenterInsights::V1::SpeechConfig]
197
+ # Optional. Default Speech-to-Text configuration. Optional, will default to
198
+ # the config specified in Settings.
195
199
  class UploadConversationRequest
196
200
  include ::Google::Protobuf::MessageExts
197
201
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -301,7 +305,8 @@ module Google
301
305
  # The request to ingest conversations.
302
306
  # @!attribute [rw] gcs_source
303
307
  # @return [::Google::Cloud::ContactCenterInsights::V1::IngestConversationsRequest::GcsSource]
304
- # A cloud storage bucket source.
308
+ # A cloud storage bucket source. Note that any previously ingested objects
309
+ # from the source will be skipped to avoid duplication.
305
310
  # @!attribute [rw] transcript_object_config
306
311
  # @return [::Google::Cloud::ContactCenterInsights::V1::IngestConversationsRequest::TranscriptObjectConfig]
307
312
  # Configuration for when `source` contains conversation transcripts.
@@ -1008,6 +1008,10 @@ module Google
1008
1008
  # @return [::Google::Cloud::ContactCenterInsights::V1::RedactionConfig]
1009
1009
  # Default DLP redaction resources to be applied while ingesting
1010
1010
  # conversations.
1011
+ # @!attribute [rw] speech_config
1012
+ # @return [::Google::Cloud::ContactCenterInsights::V1::SpeechConfig]
1013
+ # Optional. Default Speech-to-Text resources to be used while ingesting audio
1014
+ # files. Optional, CCAI Insights will create a default if not provided.
1011
1015
  class Settings
1012
1016
  include ::Google::Protobuf::MessageExts
1013
1017
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1056,6 +1060,17 @@ module Google
1056
1060
  extend ::Google::Protobuf::MessageExts::ClassMethods
1057
1061
  end
1058
1062
 
1063
+ # Speech-to-Text configuration.
1064
+ # @!attribute [rw] speech_recognizer
1065
+ # @return [::String]
1066
+ # The fully-qualified Speech Recognizer resource name.
1067
+ # Format:
1068
+ # `projects/{project_id}/locations/{location}/recognizer/{recognizer}`
1069
+ class SpeechConfig
1070
+ include ::Google::Protobuf::MessageExts
1071
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1072
+ end
1073
+
1059
1074
  # An annotation that was generated during the customer and agent interaction.
1060
1075
  # @!attribute [rw] article_suggestion
1061
1076
  # @return [::Google::Cloud::ContactCenterInsights::V1::ArticleSuggestionData]
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: 0.17.0
4
+ version: 0.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-12 00:00:00.000000000 Z
11
+ date: 2023-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common