google-cloud-contact_center_insights-v1 1.0.1 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/client.rb +453 -6
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/paths.rb +17 -0
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/client.rb +425 -6
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/service_stub.rb +239 -0
- data/lib/google/cloud/contact_center_insights/v1/version.rb +1 -1
- data/lib/google/cloud/contactcenterinsights/v1/contact_center_insights_pb.rb +13 -1
- data/lib/google/cloud/contactcenterinsights/v1/contact_center_insights_services_pb.rb +16 -2
- data/lib/google/cloud/contactcenterinsights/v1/resources_pb.rb +5 -1
- data/proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb +193 -5
- data/proto_docs/google/cloud/contactcenterinsights/v1/resources.rb +105 -4
- metadata +3 -3
data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/service_stub.rb
CHANGED
@@ -859,6 +859,82 @@ module Google
|
|
859
859
|
result
|
860
860
|
end
|
861
861
|
|
862
|
+
##
|
863
|
+
# Baseline implementation for the export_issue_model REST call
|
864
|
+
#
|
865
|
+
# @param request_pb [::Google::Cloud::ContactCenterInsights::V1::ExportIssueModelRequest]
|
866
|
+
# A request object representing the call parameters. Required.
|
867
|
+
# @param options [::Gapic::CallOptions]
|
868
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
869
|
+
#
|
870
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
871
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
872
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
873
|
+
#
|
874
|
+
# @return [::Google::Longrunning::Operation]
|
875
|
+
# A result object deserialized from the server's reply
|
876
|
+
def export_issue_model request_pb, options = nil
|
877
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
878
|
+
|
879
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_export_issue_model_request request_pb
|
880
|
+
query_string_params = if query_string_params.any?
|
881
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
882
|
+
else
|
883
|
+
{}
|
884
|
+
end
|
885
|
+
|
886
|
+
response = @client_stub.make_http_request(
|
887
|
+
verb,
|
888
|
+
uri: uri,
|
889
|
+
body: body || "",
|
890
|
+
params: query_string_params,
|
891
|
+
options: options
|
892
|
+
)
|
893
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
894
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
895
|
+
|
896
|
+
yield result, operation if block_given?
|
897
|
+
result
|
898
|
+
end
|
899
|
+
|
900
|
+
##
|
901
|
+
# Baseline implementation for the import_issue_model REST call
|
902
|
+
#
|
903
|
+
# @param request_pb [::Google::Cloud::ContactCenterInsights::V1::ImportIssueModelRequest]
|
904
|
+
# A request object representing the call parameters. Required.
|
905
|
+
# @param options [::Gapic::CallOptions]
|
906
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
907
|
+
#
|
908
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
909
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
910
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
911
|
+
#
|
912
|
+
# @return [::Google::Longrunning::Operation]
|
913
|
+
# A result object deserialized from the server's reply
|
914
|
+
def import_issue_model request_pb, options = nil
|
915
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
916
|
+
|
917
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_import_issue_model_request request_pb
|
918
|
+
query_string_params = if query_string_params.any?
|
919
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
920
|
+
else
|
921
|
+
{}
|
922
|
+
end
|
923
|
+
|
924
|
+
response = @client_stub.make_http_request(
|
925
|
+
verb,
|
926
|
+
uri: uri,
|
927
|
+
body: body || "",
|
928
|
+
params: query_string_params,
|
929
|
+
options: options
|
930
|
+
)
|
931
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
932
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
933
|
+
|
934
|
+
yield result, operation if block_given?
|
935
|
+
result
|
936
|
+
end
|
937
|
+
|
862
938
|
##
|
863
939
|
# Baseline implementation for the get_issue REST call
|
864
940
|
#
|
@@ -1353,6 +1429,82 @@ module Google
|
|
1353
1429
|
result
|
1354
1430
|
end
|
1355
1431
|
|
1432
|
+
##
|
1433
|
+
# Baseline implementation for the get_encryption_spec REST call
|
1434
|
+
#
|
1435
|
+
# @param request_pb [::Google::Cloud::ContactCenterInsights::V1::GetEncryptionSpecRequest]
|
1436
|
+
# A request object representing the call parameters. Required.
|
1437
|
+
# @param options [::Gapic::CallOptions]
|
1438
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
1439
|
+
#
|
1440
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
1441
|
+
# @yieldparam result [::Google::Cloud::ContactCenterInsights::V1::EncryptionSpec]
|
1442
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
1443
|
+
#
|
1444
|
+
# @return [::Google::Cloud::ContactCenterInsights::V1::EncryptionSpec]
|
1445
|
+
# A result object deserialized from the server's reply
|
1446
|
+
def get_encryption_spec request_pb, options = nil
|
1447
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
1448
|
+
|
1449
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_get_encryption_spec_request request_pb
|
1450
|
+
query_string_params = if query_string_params.any?
|
1451
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
1452
|
+
else
|
1453
|
+
{}
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
response = @client_stub.make_http_request(
|
1457
|
+
verb,
|
1458
|
+
uri: uri,
|
1459
|
+
body: body || "",
|
1460
|
+
params: query_string_params,
|
1461
|
+
options: options
|
1462
|
+
)
|
1463
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
1464
|
+
result = ::Google::Cloud::ContactCenterInsights::V1::EncryptionSpec.decode_json response.body, ignore_unknown_fields: true
|
1465
|
+
|
1466
|
+
yield result, operation if block_given?
|
1467
|
+
result
|
1468
|
+
end
|
1469
|
+
|
1470
|
+
##
|
1471
|
+
# Baseline implementation for the initialize_encryption_spec REST call
|
1472
|
+
#
|
1473
|
+
# @param request_pb [::Google::Cloud::ContactCenterInsights::V1::InitializeEncryptionSpecRequest]
|
1474
|
+
# A request object representing the call parameters. Required.
|
1475
|
+
# @param options [::Gapic::CallOptions]
|
1476
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
1477
|
+
#
|
1478
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
1479
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
1480
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
1481
|
+
#
|
1482
|
+
# @return [::Google::Longrunning::Operation]
|
1483
|
+
# A result object deserialized from the server's reply
|
1484
|
+
def initialize_encryption_spec request_pb, options = nil
|
1485
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
1486
|
+
|
1487
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_initialize_encryption_spec_request request_pb
|
1488
|
+
query_string_params = if query_string_params.any?
|
1489
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
1490
|
+
else
|
1491
|
+
{}
|
1492
|
+
end
|
1493
|
+
|
1494
|
+
response = @client_stub.make_http_request(
|
1495
|
+
verb,
|
1496
|
+
uri: uri,
|
1497
|
+
body: body || "",
|
1498
|
+
params: query_string_params,
|
1499
|
+
options: options
|
1500
|
+
)
|
1501
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
1502
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
1503
|
+
|
1504
|
+
yield result, operation if block_given?
|
1505
|
+
result
|
1506
|
+
end
|
1507
|
+
|
1356
1508
|
##
|
1357
1509
|
# Baseline implementation for the create_view REST call
|
1358
1510
|
#
|
@@ -1996,6 +2148,50 @@ module Google
|
|
1996
2148
|
transcoder.transcode request_pb
|
1997
2149
|
end
|
1998
2150
|
|
2151
|
+
##
|
2152
|
+
# @private
|
2153
|
+
#
|
2154
|
+
# GRPC transcoding helper method for the export_issue_model REST call
|
2155
|
+
#
|
2156
|
+
# @param request_pb [::Google::Cloud::ContactCenterInsights::V1::ExportIssueModelRequest]
|
2157
|
+
# A request object representing the call parameters. Required.
|
2158
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
2159
|
+
# Uri, Body, Query string parameters
|
2160
|
+
def self.transcode_export_issue_model_request request_pb
|
2161
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
2162
|
+
.with_bindings(
|
2163
|
+
uri_method: :post,
|
2164
|
+
uri_template: "/v1/{name}:export",
|
2165
|
+
body: "*",
|
2166
|
+
matches: [
|
2167
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/issueModels/[^/]+/?$}, false]
|
2168
|
+
]
|
2169
|
+
)
|
2170
|
+
transcoder.transcode request_pb
|
2171
|
+
end
|
2172
|
+
|
2173
|
+
##
|
2174
|
+
# @private
|
2175
|
+
#
|
2176
|
+
# GRPC transcoding helper method for the import_issue_model REST call
|
2177
|
+
#
|
2178
|
+
# @param request_pb [::Google::Cloud::ContactCenterInsights::V1::ImportIssueModelRequest]
|
2179
|
+
# A request object representing the call parameters. Required.
|
2180
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
2181
|
+
# Uri, Body, Query string parameters
|
2182
|
+
def self.transcode_import_issue_model_request request_pb
|
2183
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
2184
|
+
.with_bindings(
|
2185
|
+
uri_method: :post,
|
2186
|
+
uri_template: "/v1/{parent}/issueModels:import",
|
2187
|
+
body: "*",
|
2188
|
+
matches: [
|
2189
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
2190
|
+
]
|
2191
|
+
)
|
2192
|
+
transcoder.transcode request_pb
|
2193
|
+
end
|
2194
|
+
|
1999
2195
|
##
|
2000
2196
|
# @private
|
2001
2197
|
#
|
@@ -2273,6 +2469,49 @@ module Google
|
|
2273
2469
|
transcoder.transcode request_pb
|
2274
2470
|
end
|
2275
2471
|
|
2472
|
+
##
|
2473
|
+
# @private
|
2474
|
+
#
|
2475
|
+
# GRPC transcoding helper method for the get_encryption_spec REST call
|
2476
|
+
#
|
2477
|
+
# @param request_pb [::Google::Cloud::ContactCenterInsights::V1::GetEncryptionSpecRequest]
|
2478
|
+
# A request object representing the call parameters. Required.
|
2479
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
2480
|
+
# Uri, Body, Query string parameters
|
2481
|
+
def self.transcode_get_encryption_spec_request request_pb
|
2482
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
2483
|
+
.with_bindings(
|
2484
|
+
uri_method: :get,
|
2485
|
+
uri_template: "/v1/{name}",
|
2486
|
+
matches: [
|
2487
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/encryptionSpec/?$}, false]
|
2488
|
+
]
|
2489
|
+
)
|
2490
|
+
transcoder.transcode request_pb
|
2491
|
+
end
|
2492
|
+
|
2493
|
+
##
|
2494
|
+
# @private
|
2495
|
+
#
|
2496
|
+
# GRPC transcoding helper method for the initialize_encryption_spec REST call
|
2497
|
+
#
|
2498
|
+
# @param request_pb [::Google::Cloud::ContactCenterInsights::V1::InitializeEncryptionSpecRequest]
|
2499
|
+
# A request object representing the call parameters. Required.
|
2500
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
2501
|
+
# Uri, Body, Query string parameters
|
2502
|
+
def self.transcode_initialize_encryption_spec_request request_pb
|
2503
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
2504
|
+
.with_bindings(
|
2505
|
+
uri_method: :post,
|
2506
|
+
uri_template: "/v1/{encryption_spec.name}:initialize",
|
2507
|
+
body: "*",
|
2508
|
+
matches: [
|
2509
|
+
["encryption_spec.name", %r{^projects/[^/]+/locations/[^/]+/encryptionSpec/?$}, false]
|
2510
|
+
]
|
2511
|
+
)
|
2512
|
+
transcoder.transcode request_pb
|
2513
|
+
end
|
2514
|
+
|
2276
2515
|
##
|
2277
2516
|
# @private
|
2278
2517
|
#
|
@@ -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\"\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\"\xb5\x08\n\x1aIngestConversationsRequest\x12\x61\n\ngcs_source\x18\x02 \x01(\x0b\x32K.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSourceH\x00\x12|\n\x18transcript_object_config\x18\x03 \x01(\x0b\x32X.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.TranscriptObjectConfigH\x01\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12q\n\x13\x63onversation_config\x18\x04 \x01(\x0b\x32T.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.ConversationConfig\x12U\n\x10redaction_config\x18\x05 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.RedactionConfigB\x03\xe0\x41\x01\x12O\n\rspeech_config\x18\x06 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.SpeechConfigB\x03\xe0\x41\x01\x1a\xf6\x01\n\tGcsSource\x12\x17\n\nbucket_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12}\n\x12\x62ucket_object_type\x18\x02 \x01(\x0e\x32\\.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSource.BucketObjectTypeB\x03\xe0\x41\x01\"Q\n\x10\x42ucketObjectType\x12\"\n\x1e\x42UCKET_OBJECT_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nTRANSCRIPT\x10\x01\x12\t\n\x05\x41UDIO\x10\x02\x1ai\n\x16TranscriptObjectConfig\x12O\n\x06medium\x18\x01 \x01(\x0e\x32:.google.cloud.contactcenterinsights.v1.Conversation.MediumB\x03\xe0\x41\x02\x1a\x61\n\x12\x43onversationConfig\x12\x10\n\x08\x61gent_id\x18\x01 \x01(\t\x12\x1a\n\ragent_channel\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x1d\n\x10\x63ustomer_channel\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x42\x08\n\x06sourceB\x0f\n\robject_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\"\xf4\x02\n BulkAnalyzeConversationsMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12W\n\x07request\x18\x03 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest\x12 \n\x18\x63ompleted_analyses_count\x18\x04 \x01(\x05\x12\x1d\n\x15\x66\x61iled_analyses_count\x18\x05 \x01(\x05\x12&\n\x1etotal_requested_analyses_count\x18\x06 \x01(\x05\x12/\n\x0epartial_errors\x18\x07 \x03(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\"d\n BulkAnalyzeConversationsResponse\x12!\n\x19successful_analysis_count\x18\x01 \x01(\x05\x12\x1d\n\x15\x66\x61iled_analysis_count\x18\x02 \x01(\x05\"\x94\x01\n\x1e\x42ulkDeleteConversationsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\x12\x18\n\x10max_delete_count\x18\x03 \x01(\x05\x12\r\n\x05\x66orce\x18\x04 \x01(\x08\"\x84\x02\n\x1f\x42ulkDeleteConversationsMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12V\n\x07request\x18\x03 \x01(\x0b\x32\x45.google.cloud.contactcenterinsights.v1.BulkDeleteConversationsRequest\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"!\n\x1f\x42ulkDeleteConversationsResponse\"\x98\x04\n\x19\x45xportInsightsDataRequest\x12u\n\x15\x62ig_query_destination\x18\x02 \x01(\x0b\x32T.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.BigQueryDestinationH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x0e\n\x06\x66ilter\x18\x03 \x01(\t\x12\x0f\n\x07kms_key\x18\x04 \x01(\t\x12l\n\x11write_disposition\x18\x05 \x01(\x0e\x32Q.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.WriteDisposition\x1aN\n\x13\x42igQueryDestination\x12\x12\n\nproject_id\x18\x03 \x01(\t\x12\x14\n\x07\x64\x61taset\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\r\n\x05table\x18\x02 \x01(\t\"[\n\x10WriteDisposition\x12!\n\x1dWRITE_DISPOSITION_UNSPECIFIED\x10\x00\x12\x12\n\x0eWRITE_TRUNCATE\x10\x01\x12\x10\n\x0cWRITE_APPEND\x10\x02\x42\r\n\x0b\x64\x65stination\"\x84\x02\n\x1a\x45xportInsightsDataMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Q\n\x07request\x18\x03 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"\x1c\n\x1a\x45xportInsightsDataResponse\"\xa1\x01\n\x17\x43reateIssueModelRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12K\n\x0bissue_model\x18\x02 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModelB\x03\xe0\x41\x02\"\xd4\x01\n\x18\x43reateIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest\"\x97\x01\n\x17UpdateIssueModelRequest\x12K\n\x0bissue_model\x18\x01 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModelB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"S\n\x16ListIssueModelsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\"b\n\x17ListIssueModelsResponse\x12G\n\x0cissue_models\x18\x01 \x03(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModel\"]\n\x14GetIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"`\n\x17\x44\x65leteIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\xd4\x01\n\x18\x44\x65leteIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest\"`\n\x17\x44\x65ployIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\x1a\n\x18\x44\x65ployIssueModelResponse\"\xd4\x01\n\x18\x44\x65ployIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest\"b\n\x19UndeployIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\x1c\n\x1aUndeployIssueModelResponse\"\xd8\x01\n\x1aUndeployIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Q\n\x07request\x18\x03 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest\"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\xdc\x44\n\x15\x43ontactCenterInsights\x12\xfa\x01\n\x12\x43reateConversation\x12@.google.cloud.contactcenterinsights.v1.CreateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"m\xda\x41#parent,conversation,conversation_id\x82\xd3\xe4\x93\x02\x41\"1/v1/{parent=projects/*/locations/*}/conversations:\x0c\x63onversation\x12\xe7\x01\n\x12UploadConversation\x12@.google.cloud.contactcenterinsights.v1.UploadConversationRequest\x1a\x1d.google.longrunning.Operation\"p\xca\x41*\n\x0c\x43onversation\x12\x1aUploadConversationMetadata\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:upload:\x01*\x12\xfc\x01\n\x12UpdateConversation\x12@.google.cloud.contactcenterinsights.v1.UpdateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"o\xda\x41\x18\x63onversation,update_mask\x82\xd3\xe4\x93\x02N2>/v1/{conversation.name=projects/*/locations/*/conversations/*}:\x0c\x63onversation\x12\xc7\x01\n\x0fGetConversation\x12=.google.cloud.contactcenterinsights.v1.GetConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/conversations/*}\x12\xda\x01\n\x11ListConversations\x12?.google.cloud.contactcenterinsights.v1.ListConversationsRequest\x1a@.google.cloud.contactcenterinsights.v1.ListConversationsResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/conversations\x12\xb0\x01\n\x12\x44\x65leteConversation\x12@.google.cloud.contactcenterinsights.v1.DeleteConversationRequest\x1a\x16.google.protobuf.Empty\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/conversations/*}\x12\xfe\x01\n\x0e\x43reateAnalysis\x12<.google.cloud.contactcenterinsights.v1.CreateAnalysisRequest\x1a\x1d.google.longrunning.Operation\"\x8e\x01\xca\x41+\n\x08\x41nalysis\x12\x1f\x43reateAnalysisOperationMetadata\xda\x41\x0fparent,analysis\x82\xd3\xe4\x93\x02H\"</v1/{parent=projects/*/locations/*/conversations/*}/analyses:\x08\x61nalysis\x12\xc6\x01\n\x0bGetAnalysis\x12\x39.google.cloud.contactcenterinsights.v1.GetAnalysisRequest\x1a/.google.cloud.contactcenterinsights.v1.Analysis\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\x12\xd6\x01\n\x0cListAnalyses\x12:.google.cloud.contactcenterinsights.v1.ListAnalysesRequest\x1a;.google.cloud.contactcenterinsights.v1.ListAnalysesResponse\"M\xda\x41\x06parent\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/conversations/*}/analyses\x12\xb3\x01\n\x0e\x44\x65leteAnalysis\x12<.google.cloud.contactcenterinsights.v1.DeleteAnalysisRequest\x1a\x16.google.protobuf.Empty\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>*</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\x12\xb7\x02\n\x18\x42ulkAnalyzeConversations\x12\x46.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest\x1a\x1d.google.longrunning.Operation\"\xb3\x01\xca\x41\x44\n BulkAnalyzeConversationsResponse\x12 BulkAnalyzeConversationsMetadata\xda\x41!parent,filter,analysis_percentage\x82\xd3\xe4\x93\x02\x42\"=/v1/{parent=projects/*/locations/*}/conversations:bulkAnalyze:\x01*\x12\x9e\x02\n\x17\x42ulkDeleteConversations\x12\x45.google.cloud.contactcenterinsights.v1.BulkDeleteConversationsRequest\x1a\x1d.google.longrunning.Operation\"\x9c\x01\xca\x41\x42\n\x1f\x42ulkDeleteConversationsResponse\x12\x1f\x42ulkDeleteConversationsMetadata\xda\x41\rparent,filter\x82\xd3\xe4\x93\x02\x41\"</v1/{parent=projects/*/locations/*}/conversations:bulkDelete:\x01*\x12\x83\x02\n\x13IngestConversations\x12\x41.google.cloud.contactcenterinsights.v1.IngestConversationsRequest\x1a\x1d.google.longrunning.Operation\"\x89\x01\xca\x41:\n\x1bIngestConversationsResponse\x12\x1bIngestConversationsMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:ingest:\x01*\x12\xfe\x01\n\x12\x45xportInsightsData\x12@.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\xca\x41\x38\n\x1a\x45xportInsightsDataResponse\x12\x1a\x45xportInsightsDataMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\"7/v1/{parent=projects/*/locations/*}/insightsdata:export:\x01*\x12\xf6\x01\n\x10\x43reateIssueModel\x12>.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x82\x01\xca\x41&\n\nIssueModel\x12\x18\x43reateIssueModelMetadata\xda\x41\x12parent,issue_model\x82\xd3\xe4\x93\x02>\"//v1/{parent=projects/*/locations/*}/issueModels:\x0bissue_model\x12\xf1\x01\n\x10UpdateIssueModel\x12>.google.cloud.contactcenterinsights.v1.UpdateIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\"j\xda\x41\x17issue_model,update_mask\x82\xd3\xe4\x93\x02J2;/v1/{issue_model.name=projects/*/locations/*/issueModels/*}:\x0bissue_model\x12\xbf\x01\n\rGetIssueModel\x12;.google.cloud.contactcenterinsights.v1.GetIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\">\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31\x12//v1/{name=projects/*/locations/*/issueModels/*}\x12\xd2\x01\n\x0fListIssueModels\x12=.google.cloud.contactcenterinsights.v1.ListIssueModelsRequest\x1a>.google.cloud.contactcenterinsights.v1.ListIssueModelsResponse\"@\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x31\x12//v1/{parent=projects/*/locations/*}/issueModels\x12\xe5\x01\n\x10\x44\x65leteIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest\x1a\x1d.google.longrunning.Operation\"r\xca\x41\x31\n\x15google.protobuf.Empty\x12\x18\x44\x65leteIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31*//v1/{name=projects/*/locations/*/issueModels/*}\x12\xf2\x01\n\x10\x44\x65ployIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x7f\xca\x41\x34\n\x18\x44\x65ployIssueModelResponse\x12\x18\x44\x65ployIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/issueModels/*}:deploy:\x01*\x12\xfd\x01\n\x12UndeployIssueModel\x12@.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x85\x01\xca\x41\x38\n\x1aUndeployIssueModelResponse\x12\x1aUndeployIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02=\"8/v1/{name=projects/*/locations/*/issueModels/*}:undeploy:\x01*\x12\xb9\x01\n\x08GetIssue\x12\x36.google.cloud.contactcenterinsights.v1.GetIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"G\xda\x41\x04name\x82\xd3\xe4\x93\x02:\x12\x38/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\x12\xcc\x01\n\nListIssues\x12\x38.google.cloud.contactcenterinsights.v1.ListIssuesRequest\x1a\x39.google.cloud.contactcenterinsights.v1.ListIssuesResponse\"I\xda\x41\x06parent\x82\xd3\xe4\x93\x02:\x12\x38/v1/{parent=projects/*/locations/*/issueModels/*}/issues\x12\xd9\x01\n\x0bUpdateIssue\x12\x39.google.cloud.contactcenterinsights.v1.UpdateIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"a\xda\x41\x11issue,update_mask\x82\xd3\xe4\x93\x02G2>/v1/{issue.name=projects/*/locations/*/issueModels/*/issues/*}:\x05issue\x12\xa9\x01\n\x0b\x44\x65leteIssue\x12\x39.google.cloud.contactcenterinsights.v1.DeleteIssueRequest\x1a\x16.google.protobuf.Empty\"G\xda\x41\x04name\x82\xd3\xe4\x93\x02:*8/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\x12\x92\x02\n\x18\x43\x61lculateIssueModelStats\x12\x46.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsRequest\x1aG.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsResponse\"e\xda\x41\x0bissue_model\x82\xd3\xe4\x93\x02Q\x12O/v1/{issue_model=projects/*/locations/*/issueModels/*}:calculateIssueModelStats\x12\xf2\x01\n\x13\x43reatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.CreatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"b\xda\x41\x15parent,phrase_matcher\x82\xd3\xe4\x93\x02\x44\"2/v1/{parent=projects/*/locations/*}/phraseMatchers:\x0ephrase_matcher\x12\xcb\x01\n\x10GetPhraseMatcher\x12>.google.cloud.contactcenterinsights.v1.GetPhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{name=projects/*/locations/*/phraseMatchers/*}\x12\xde\x01\n\x12ListPhraseMatchers\x12@.google.cloud.contactcenterinsights.v1.ListPhraseMatchersRequest\x1a\x41.google.cloud.contactcenterinsights.v1.ListPhraseMatchersResponse\"C\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{parent=projects/*/locations/*}/phraseMatchers\x12\xb3\x01\n\x13\x44\x65letePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest\x1a\x16.google.protobuf.Empty\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34*2/v1/{name=projects/*/locations/*/phraseMatchers/*}\x12\x86\x02\n\x13UpdatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.UpdatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"v\xda\x41\x1aphrase_matcher,update_mask\x82\xd3\xe4\x93\x02S2A/v1/{phrase_matcher.name=projects/*/locations/*/phraseMatchers/*}:\x0ephrase_matcher\x12\xe4\x01\n\x0e\x43\x61lculateStats\x12<.google.cloud.contactcenterinsights.v1.CalculateStatsRequest\x1a=.google.cloud.contactcenterinsights.v1.CalculateStatsResponse\"U\xda\x41\x08location\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{location=projects/*/locations/*}/conversations:calculateStats\x12\xb4\x01\n\x0bGetSettings\x12\x39.google.cloud.contactcenterinsights.v1.GetSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"9\xda\x41\x04name\x82\xd3\xe4\x93\x02,\x12*/v1/{name=projects/*/locations/*/settings}\x12\xdd\x01\n\x0eUpdateSettings\x12<.google.cloud.contactcenterinsights.v1.UpdateSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"\\\xda\x41\x14settings,update_mask\x82\xd3\xe4\x93\x02?23/v1/{settings.name=projects/*/locations/*/settings}:\x08settings\x12\xba\x01\n\nCreateView\x12\x38.google.cloud.contactcenterinsights.v1.CreateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"E\xda\x41\x0bparent,view\x82\xd3\xe4\x93\x02\x31\")/v1/{parent=projects/*/locations/*}/views:\x04view\x12\xa7\x01\n\x07GetView\x12\x35.google.cloud.contactcenterinsights.v1.GetViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"8\xda\x41\x04name\x82\xd3\xe4\x93\x02+\x12)/v1/{name=projects/*/locations/*/views/*}\x12\xba\x01\n\tListViews\x12\x37.google.cloud.contactcenterinsights.v1.ListViewsRequest\x1a\x38.google.cloud.contactcenterinsights.v1.ListViewsResponse\":\xda\x41\x06parent\x82\xd3\xe4\x93\x02+\x12)/v1/{parent=projects/*/locations/*}/views\x12\xc4\x01\n\nUpdateView\x12\x38.google.cloud.contactcenterinsights.v1.UpdateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"O\xda\x41\x10view,update_mask\x82\xd3\xe4\x93\x02\x36\x32./v1/{view.name=projects/*/locations/*/views/*}:\x04view\x12\x98\x01\n\nDeleteView\x12\x38.google.cloud.contactcenterinsights.v1.DeleteViewRequest\x1a\x16.google.protobuf.Empty\"8\xda\x41\x04name\x82\xd3\xe4\x93\x02+*)/v1/{name=projects/*/locations/*/views/*}\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\"\xea\x01\n\x18ListConversationsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x15\n\x08order_by\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12\x45\n\x04view\x18\x05 \x01(\x0e\x32\x37.google.cloud.contactcenterinsights.v1.ConversationView\"\x80\x01\n\x19ListConversationsResponse\x12J\n\rconversations\x18\x01 \x03(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.Conversation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xa8\x01\n\x16GetConversationRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x45\n\x04view\x18\x02 \x01(\x0e\x32\x37.google.cloud.contactcenterinsights.v1.ConversationView\"\x9c\x01\n\x19UpdateConversationRequest\x12N\n\x0c\x63onversation\x18\x01 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.ConversationB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"s\n\x19\x44\x65leteConversationRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\r\n\x05\x66orce\x18\x02 \x01(\x08\"\xcb\t\n\x1aIngestConversationsRequest\x12\x61\n\ngcs_source\x18\x02 \x01(\x0b\x32K.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSourceH\x00\x12|\n\x18transcript_object_config\x18\x03 \x01(\x0b\x32X.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.TranscriptObjectConfigH\x01\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12q\n\x13\x63onversation_config\x18\x04 \x01(\x0b\x32T.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.ConversationConfig\x12U\n\x10redaction_config\x18\x05 \x01(\x0b\x32\x36.google.cloud.contactcenterinsights.v1.RedactionConfigB\x03\xe0\x41\x01\x12O\n\rspeech_config\x18\x06 \x01(\x0b\x32\x33.google.cloud.contactcenterinsights.v1.SpeechConfigB\x03\xe0\x41\x01\x12\x1d\n\x0bsample_size\x18\x07 \x01(\x05\x42\x03\xe0\x41\x01H\x02\x88\x01\x01\x1a\xd8\x02\n\tGcsSource\x12\x17\n\nbucket_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12}\n\x12\x62ucket_object_type\x18\x02 \x01(\x0e\x32\\.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSource.BucketObjectTypeB\x03\xe0\x41\x01\x12%\n\x13metadata_bucket_uri\x18\x03 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12!\n\x14\x63ustom_metadata_keys\x18\x0c \x03(\tB\x03\xe0\x41\x01\"Q\n\x10\x42ucketObjectType\x12\"\n\x1e\x42UCKET_OBJECT_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nTRANSCRIPT\x10\x01\x12\t\n\x05\x41UDIO\x10\x02\x42\x16\n\x14_metadata_bucket_uri\x1ai\n\x16TranscriptObjectConfig\x12O\n\x06medium\x18\x01 \x01(\x0e\x32:.google.cloud.contactcenterinsights.v1.Conversation.MediumB\x03\xe0\x41\x02\x1a\x66\n\x12\x43onversationConfig\x12\x15\n\x08\x61gent_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\ragent_channel\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x1d\n\x10\x63ustomer_channel\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x42\x08\n\x06sourceB\x0f\n\robject_configB\x0e\n\x0c_sample_size\"\xc8\x04\n\x1bIngestConversationsMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12W\n\x07request\x18\x03 \x01(\x0b\x32\x41.google.cloud.contactcenterinsights.v1.IngestConversationsRequestB\x03\xe0\x41\x03\x12/\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\x12\x84\x01\n\x1aingest_conversations_stats\x18\x05 \x01(\x0b\x32[.google.cloud.contactcenterinsights.v1.IngestConversationsMetadata.IngestConversationsStatsB\x03\xe0\x41\x03\x1a\xae\x01\n\x18IngestConversationsStats\x12#\n\x16processed_object_count\x18\x01 \x01(\x05\x42\x03\xe0\x41\x03\x12%\n\x18\x64uplicates_skipped_count\x18\x02 \x01(\x05\x42\x03\xe0\x41\x03\x12$\n\x17successful_ingest_count\x18\x03 \x01(\x05\x42\x03\xe0\x41\x03\x12 \n\x13\x66\x61iled_ingest_count\x18\x04 \x01(\x05\x42\x03\xe0\x41\x03\"\x1d\n\x1bIngestConversationsResponse\"\xaa\x01\n\x15\x43reateAnalysisRequest\x12I\n\x06parent\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x46\n\x08\x61nalysis\x18\x02 \x01(\x0b\x32/.google.cloud.contactcenterinsights.v1.AnalysisB\x03\xe0\x41\x02\"\x97\x01\n\x13ListAnalysesRequest\x12I\n\x06parent\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1contactcenterinsights.googleapis.com/Conversation\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\"r\n\x14ListAnalysesResponse\x12\x41\n\x08\x61nalyses\x18\x01 \x03(\x0b\x32/.google.cloud.contactcenterinsights.v1.Analysis\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"Y\n\x12GetAnalysisRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-contactcenterinsights.googleapis.com/Analysis\"\\\n\x15\x44\x65leteAnalysisRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-contactcenterinsights.googleapis.com/Analysis\"\xe9\x01\n\x1f\x42ulkAnalyzeConversationsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12 \n\x13\x61nalysis_percentage\x18\x03 \x01(\x02\x42\x03\xe0\x41\x02\x12T\n\x12\x61nnotator_selector\x18\x08 \x01(\x0b\x32\x38.google.cloud.contactcenterinsights.v1.AnnotatorSelector\"\xf4\x02\n BulkAnalyzeConversationsMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12W\n\x07request\x18\x03 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest\x12 \n\x18\x63ompleted_analyses_count\x18\x04 \x01(\x05\x12\x1d\n\x15\x66\x61iled_analyses_count\x18\x05 \x01(\x05\x12&\n\x1etotal_requested_analyses_count\x18\x06 \x01(\x05\x12/\n\x0epartial_errors\x18\x07 \x03(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\"d\n BulkAnalyzeConversationsResponse\x12!\n\x19successful_analysis_count\x18\x01 \x01(\x05\x12\x1d\n\x15\x66\x61iled_analysis_count\x18\x02 \x01(\x05\"\x94\x01\n\x1e\x42ulkDeleteConversationsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\x12\x18\n\x10max_delete_count\x18\x03 \x01(\x05\x12\r\n\x05\x66orce\x18\x04 \x01(\x08\"\x84\x02\n\x1f\x42ulkDeleteConversationsMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12V\n\x07request\x18\x03 \x01(\x0b\x32\x45.google.cloud.contactcenterinsights.v1.BulkDeleteConversationsRequest\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"!\n\x1f\x42ulkDeleteConversationsResponse\"\x98\x04\n\x19\x45xportInsightsDataRequest\x12u\n\x15\x62ig_query_destination\x18\x02 \x01(\x0b\x32T.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.BigQueryDestinationH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x0e\n\x06\x66ilter\x18\x03 \x01(\t\x12\x0f\n\x07kms_key\x18\x04 \x01(\t\x12l\n\x11write_disposition\x18\x05 \x01(\x0e\x32Q.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.WriteDisposition\x1aN\n\x13\x42igQueryDestination\x12\x12\n\nproject_id\x18\x03 \x01(\t\x12\x14\n\x07\x64\x61taset\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\r\n\x05table\x18\x02 \x01(\t\"[\n\x10WriteDisposition\x12!\n\x1dWRITE_DISPOSITION_UNSPECIFIED\x10\x00\x12\x12\n\x0eWRITE_TRUNCATE\x10\x01\x12\x10\n\x0cWRITE_APPEND\x10\x02\x42\r\n\x0b\x64\x65stination\"\x84\x02\n\x1a\x45xportInsightsDataMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Q\n\x07request\x18\x03 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"\x1c\n\x1a\x45xportInsightsDataResponse\"\xa1\x01\n\x17\x43reateIssueModelRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12K\n\x0bissue_model\x18\x02 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModelB\x03\xe0\x41\x02\"\xd4\x01\n\x18\x43reateIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest\"\x97\x01\n\x17UpdateIssueModelRequest\x12K\n\x0bissue_model\x18\x01 \x01(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModelB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"S\n\x16ListIssueModelsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\"b\n\x17ListIssueModelsResponse\x12G\n\x0cissue_models\x18\x01 \x03(\x0b\x32\x31.google.cloud.contactcenterinsights.v1.IssueModel\"]\n\x14GetIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"`\n\x17\x44\x65leteIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\xd4\x01\n\x18\x44\x65leteIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest\"`\n\x17\x44\x65ployIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\x1a\n\x18\x44\x65ployIssueModelResponse\"\xd4\x01\n\x18\x44\x65ployIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest\"b\n\x19UndeployIssueModelRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"\x1c\n\x1aUndeployIssueModelResponse\"\xd8\x01\n\x1aUndeployIssueModelMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12Q\n\x07request\x18\x03 \x01(\x0b\x32@.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest\"\x84\x02\n\x17\x45xportIssueModelRequest\x12h\n\x0fgcs_destination\x18\x02 \x01(\x0b\x32M.google.cloud.contactcenterinsights.v1.ExportIssueModelRequest.GcsDestinationH\x00\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\x1a)\n\x0eGcsDestination\x12\x17\n\nobject_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x42\r\n\x0b\x44\x65stination\"\x1a\n\x18\x45xportIssueModelResponse\"\xca\x01\n\x18\x45xportIssueModelMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.ExportIssueModelRequest\"\x83\x02\n\x17ImportIssueModelRequest\x12^\n\ngcs_source\x18\x02 \x01(\x0b\x32H.google.cloud.contactcenterinsights.v1.ImportIssueModelRequest.GcsSourceH\x00\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x1d\n\x10\x63reate_new_model\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x1a$\n\tGcsSource\x12\x17\n\nobject_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x42\x08\n\x06Source\"\x1a\n\x18ImportIssueModelResponse\"\xca\x01\n\x18ImportIssueModelMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12O\n\x07request\x18\x03 \x01(\x0b\x32>.google.cloud.contactcenterinsights.v1.ImportIssueModelRequest\"S\n\x0fGetIssueRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*contactcenterinsights.googleapis.com/Issue\"\\\n\x11ListIssuesRequest\x12G\n\x06parent\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"R\n\x12ListIssuesResponse\x12<\n\x06issues\x18\x01 \x03(\x0b\x32,.google.cloud.contactcenterinsights.v1.Issue\"\x87\x01\n\x12UpdateIssueRequest\x12@\n\x05issue\x18\x01 \x01(\x0b\x32,.google.cloud.contactcenterinsights.v1.IssueB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"V\n\x12\x44\x65leteIssueRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*contactcenterinsights.googleapis.com/Issue\"o\n\x1f\x43\x61lculateIssueModelStatsRequest\x12L\n\x0bissue_model\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/contactcenterinsights.googleapis.com/IssueModel\"v\n CalculateIssueModelStatsResponse\x12R\n\rcurrent_stats\x18\x04 \x01(\x0b\x32;.google.cloud.contactcenterinsights.v1.IssueModelLabelStats\"\xaa\x01\n\x1a\x43reatePhraseMatcherRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12Q\n\x0ephrase_matcher\x18\x02 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.PhraseMatcherB\x03\xe0\x41\x02\"\x8d\x01\n\x19ListPhraseMatchersRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\"\x84\x01\n\x1aListPhraseMatchersResponse\x12M\n\x0fphrase_matchers\x18\x01 \x03(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"c\n\x17GetPhraseMatcherRequest\x12H\n\x04name\x18\x01 \x01(\tB:\xe0\x41\x02\xfa\x41\x34\n2contactcenterinsights.googleapis.com/PhraseMatcher\"f\n\x1a\x44\x65letePhraseMatcherRequest\x12H\n\x04name\x18\x01 \x01(\tB:\xe0\x41\x02\xfa\x41\x34\n2contactcenterinsights.googleapis.com/PhraseMatcher\"\xa0\x01\n\x1aUpdatePhraseMatcherRequest\x12Q\n\x0ephrase_matcher\x18\x01 \x01(\x0b\x32\x34.google.cloud.contactcenterinsights.v1.PhraseMatcherB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"Y\n\x12GetSettingsRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-contactcenterinsights.googleapis.com/Settings\"\x95\x01\n\x15UpdateSettingsRequest\x12\x46\n\x08settings\x18\x01 \x01(\x0b\x32/.google.cloud.contactcenterinsights.v1.SettingsB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"e\n\x18GetEncryptionSpecRequest\x12I\n\x04name\x18\x01 \x01(\tB;\xe0\x41\x02\xfa\x41\x35\n3contactcenterinsights.googleapis.com/EncryptionSpec\"v\n\x1fInitializeEncryptionSpecRequest\x12S\n\x0f\x65ncryption_spec\x18\x01 \x01(\x0b\x32\x35.google.cloud.contactcenterinsights.v1.EncryptionSpecB\x03\xe0\x41\x02\"\"\n InitializeEncryptionSpecResponse\"\x95\x02\n InitializeEncryptionSpecMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\\\n\x07request\x18\x03 \x01(\x0b\x32\x46.google.cloud.contactcenterinsights.v1.InitializeEncryptionSpecRequestB\x03\xe0\x41\x03\x12*\n\x0epartial_errors\x18\x04 \x03(\x0b\x32\x12.google.rpc.Status\"\x8e\x01\n\x11\x43reateViewRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12>\n\x04view\x18\x02 \x01(\x0b\x32+.google.cloud.contactcenterinsights.v1.ViewB\x03\xe0\x41\x02\"Q\n\x0eGetViewRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)contactcenterinsights.googleapis.com/View\"t\n\x10ListViewsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"h\n\x11ListViewsResponse\x12:\n\x05views\x18\x01 \x03(\x0b\x32+.google.cloud.contactcenterinsights.v1.View\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x84\x01\n\x11UpdateViewRequest\x12>\n\x04view\x18\x01 \x01(\x0b\x32+.google.cloud.contactcenterinsights.v1.ViewB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"T\n\x11\x44\x65leteViewRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)contactcenterinsights.googleapis.com/View*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\xceL\n\x15\x43ontactCenterInsights\x12\xfa\x01\n\x12\x43reateConversation\x12@.google.cloud.contactcenterinsights.v1.CreateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"m\xda\x41#parent,conversation,conversation_id\x82\xd3\xe4\x93\x02\x41\"1/v1/{parent=projects/*/locations/*}/conversations:\x0c\x63onversation\x12\xe7\x01\n\x12UploadConversation\x12@.google.cloud.contactcenterinsights.v1.UploadConversationRequest\x1a\x1d.google.longrunning.Operation\"p\xca\x41*\n\x0c\x43onversation\x12\x1aUploadConversationMetadata\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:upload:\x01*\x12\xfc\x01\n\x12UpdateConversation\x12@.google.cloud.contactcenterinsights.v1.UpdateConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"o\xda\x41\x18\x63onversation,update_mask\x82\xd3\xe4\x93\x02N2>/v1/{conversation.name=projects/*/locations/*/conversations/*}:\x0c\x63onversation\x12\xc7\x01\n\x0fGetConversation\x12=.google.cloud.contactcenterinsights.v1.GetConversationRequest\x1a\x33.google.cloud.contactcenterinsights.v1.Conversation\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/conversations/*}\x12\xda\x01\n\x11ListConversations\x12?.google.cloud.contactcenterinsights.v1.ListConversationsRequest\x1a@.google.cloud.contactcenterinsights.v1.ListConversationsResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/conversations\x12\xb0\x01\n\x12\x44\x65leteConversation\x12@.google.cloud.contactcenterinsights.v1.DeleteConversationRequest\x1a\x16.google.protobuf.Empty\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/conversations/*}\x12\xfe\x01\n\x0e\x43reateAnalysis\x12<.google.cloud.contactcenterinsights.v1.CreateAnalysisRequest\x1a\x1d.google.longrunning.Operation\"\x8e\x01\xca\x41+\n\x08\x41nalysis\x12\x1f\x43reateAnalysisOperationMetadata\xda\x41\x0fparent,analysis\x82\xd3\xe4\x93\x02H\"</v1/{parent=projects/*/locations/*/conversations/*}/analyses:\x08\x61nalysis\x12\xc6\x01\n\x0bGetAnalysis\x12\x39.google.cloud.contactcenterinsights.v1.GetAnalysisRequest\x1a/.google.cloud.contactcenterinsights.v1.Analysis\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\x12\xd6\x01\n\x0cListAnalyses\x12:.google.cloud.contactcenterinsights.v1.ListAnalysesRequest\x1a;.google.cloud.contactcenterinsights.v1.ListAnalysesResponse\"M\xda\x41\x06parent\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/conversations/*}/analyses\x12\xb3\x01\n\x0e\x44\x65leteAnalysis\x12<.google.cloud.contactcenterinsights.v1.DeleteAnalysisRequest\x1a\x16.google.protobuf.Empty\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>*</v1/{name=projects/*/locations/*/conversations/*/analyses/*}\x12\xb7\x02\n\x18\x42ulkAnalyzeConversations\x12\x46.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest\x1a\x1d.google.longrunning.Operation\"\xb3\x01\xca\x41\x44\n BulkAnalyzeConversationsResponse\x12 BulkAnalyzeConversationsMetadata\xda\x41!parent,filter,analysis_percentage\x82\xd3\xe4\x93\x02\x42\"=/v1/{parent=projects/*/locations/*}/conversations:bulkAnalyze:\x01*\x12\x9e\x02\n\x17\x42ulkDeleteConversations\x12\x45.google.cloud.contactcenterinsights.v1.BulkDeleteConversationsRequest\x1a\x1d.google.longrunning.Operation\"\x9c\x01\xca\x41\x42\n\x1f\x42ulkDeleteConversationsResponse\x12\x1f\x42ulkDeleteConversationsMetadata\xda\x41\rparent,filter\x82\xd3\xe4\x93\x02\x41\"</v1/{parent=projects/*/locations/*}/conversations:bulkDelete:\x01*\x12\x83\x02\n\x13IngestConversations\x12\x41.google.cloud.contactcenterinsights.v1.IngestConversationsRequest\x1a\x1d.google.longrunning.Operation\"\x89\x01\xca\x41:\n\x1bIngestConversationsResponse\x12\x1bIngestConversationsMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02=\"8/v1/{parent=projects/*/locations/*}/conversations:ingest:\x01*\x12\xfe\x01\n\x12\x45xportInsightsData\x12@.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\xca\x41\x38\n\x1a\x45xportInsightsDataResponse\x12\x1a\x45xportInsightsDataMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\"7/v1/{parent=projects/*/locations/*}/insightsdata:export:\x01*\x12\xf6\x01\n\x10\x43reateIssueModel\x12>.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x82\x01\xca\x41&\n\nIssueModel\x12\x18\x43reateIssueModelMetadata\xda\x41\x12parent,issue_model\x82\xd3\xe4\x93\x02>\"//v1/{parent=projects/*/locations/*}/issueModels:\x0bissue_model\x12\xf1\x01\n\x10UpdateIssueModel\x12>.google.cloud.contactcenterinsights.v1.UpdateIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\"j\xda\x41\x17issue_model,update_mask\x82\xd3\xe4\x93\x02J2;/v1/{issue_model.name=projects/*/locations/*/issueModels/*}:\x0bissue_model\x12\xbf\x01\n\rGetIssueModel\x12;.google.cloud.contactcenterinsights.v1.GetIssueModelRequest\x1a\x31.google.cloud.contactcenterinsights.v1.IssueModel\">\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31\x12//v1/{name=projects/*/locations/*/issueModels/*}\x12\xd2\x01\n\x0fListIssueModels\x12=.google.cloud.contactcenterinsights.v1.ListIssueModelsRequest\x1a>.google.cloud.contactcenterinsights.v1.ListIssueModelsResponse\"@\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x31\x12//v1/{parent=projects/*/locations/*}/issueModels\x12\xe5\x01\n\x10\x44\x65leteIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest\x1a\x1d.google.longrunning.Operation\"r\xca\x41\x31\n\x15google.protobuf.Empty\x12\x18\x44\x65leteIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31*//v1/{name=projects/*/locations/*/issueModels/*}\x12\xf2\x01\n\x10\x44\x65ployIssueModel\x12>.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x7f\xca\x41\x34\n\x18\x44\x65ployIssueModelResponse\x12\x18\x44\x65ployIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/issueModels/*}:deploy:\x01*\x12\xfd\x01\n\x12UndeployIssueModel\x12@.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x85\x01\xca\x41\x38\n\x1aUndeployIssueModelResponse\x12\x1aUndeployIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02=\"8/v1/{name=projects/*/locations/*/issueModels/*}:undeploy:\x01*\x12\xf2\x01\n\x10\x45xportIssueModel\x12>.google.cloud.contactcenterinsights.v1.ExportIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x7f\xca\x41\x34\n\x18\x45xportIssueModelResponse\x12\x18\x45xportIssueModelMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/issueModels/*}:export:\x01*\x12\xf5\x01\n\x10ImportIssueModel\x12>.google.cloud.contactcenterinsights.v1.ImportIssueModelRequest\x1a\x1d.google.longrunning.Operation\"\x81\x01\xca\x41\x34\n\x18ImportIssueModelResponse\x12\x18ImportIssueModelMetadata\xda\x41\x06parent\x82\xd3\xe4\x93\x02;\"6/v1/{parent=projects/*/locations/*}/issueModels:import:\x01*\x12\xb9\x01\n\x08GetIssue\x12\x36.google.cloud.contactcenterinsights.v1.GetIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"G\xda\x41\x04name\x82\xd3\xe4\x93\x02:\x12\x38/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\x12\xcc\x01\n\nListIssues\x12\x38.google.cloud.contactcenterinsights.v1.ListIssuesRequest\x1a\x39.google.cloud.contactcenterinsights.v1.ListIssuesResponse\"I\xda\x41\x06parent\x82\xd3\xe4\x93\x02:\x12\x38/v1/{parent=projects/*/locations/*/issueModels/*}/issues\x12\xd9\x01\n\x0bUpdateIssue\x12\x39.google.cloud.contactcenterinsights.v1.UpdateIssueRequest\x1a,.google.cloud.contactcenterinsights.v1.Issue\"a\xda\x41\x11issue,update_mask\x82\xd3\xe4\x93\x02G2>/v1/{issue.name=projects/*/locations/*/issueModels/*/issues/*}:\x05issue\x12\xa9\x01\n\x0b\x44\x65leteIssue\x12\x39.google.cloud.contactcenterinsights.v1.DeleteIssueRequest\x1a\x16.google.protobuf.Empty\"G\xda\x41\x04name\x82\xd3\xe4\x93\x02:*8/v1/{name=projects/*/locations/*/issueModels/*/issues/*}\x12\x92\x02\n\x18\x43\x61lculateIssueModelStats\x12\x46.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsRequest\x1aG.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsResponse\"e\xda\x41\x0bissue_model\x82\xd3\xe4\x93\x02Q\x12O/v1/{issue_model=projects/*/locations/*/issueModels/*}:calculateIssueModelStats\x12\xf2\x01\n\x13\x43reatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.CreatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"b\xda\x41\x15parent,phrase_matcher\x82\xd3\xe4\x93\x02\x44\"2/v1/{parent=projects/*/locations/*}/phraseMatchers:\x0ephrase_matcher\x12\xcb\x01\n\x10GetPhraseMatcher\x12>.google.cloud.contactcenterinsights.v1.GetPhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{name=projects/*/locations/*/phraseMatchers/*}\x12\xde\x01\n\x12ListPhraseMatchers\x12@.google.cloud.contactcenterinsights.v1.ListPhraseMatchersRequest\x1a\x41.google.cloud.contactcenterinsights.v1.ListPhraseMatchersResponse\"C\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{parent=projects/*/locations/*}/phraseMatchers\x12\xb3\x01\n\x13\x44\x65letePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest\x1a\x16.google.protobuf.Empty\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34*2/v1/{name=projects/*/locations/*/phraseMatchers/*}\x12\x86\x02\n\x13UpdatePhraseMatcher\x12\x41.google.cloud.contactcenterinsights.v1.UpdatePhraseMatcherRequest\x1a\x34.google.cloud.contactcenterinsights.v1.PhraseMatcher\"v\xda\x41\x1aphrase_matcher,update_mask\x82\xd3\xe4\x93\x02S2A/v1/{phrase_matcher.name=projects/*/locations/*/phraseMatchers/*}:\x0ephrase_matcher\x12\xe4\x01\n\x0e\x43\x61lculateStats\x12<.google.cloud.contactcenterinsights.v1.CalculateStatsRequest\x1a=.google.cloud.contactcenterinsights.v1.CalculateStatsResponse\"U\xda\x41\x08location\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{location=projects/*/locations/*}/conversations:calculateStats\x12\xb4\x01\n\x0bGetSettings\x12\x39.google.cloud.contactcenterinsights.v1.GetSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"9\xda\x41\x04name\x82\xd3\xe4\x93\x02,\x12*/v1/{name=projects/*/locations/*/settings}\x12\xdd\x01\n\x0eUpdateSettings\x12<.google.cloud.contactcenterinsights.v1.UpdateSettingsRequest\x1a/.google.cloud.contactcenterinsights.v1.Settings\"\\\xda\x41\x14settings,update_mask\x82\xd3\xe4\x93\x02?23/v1/{settings.name=projects/*/locations/*/settings}:\x08settings\x12\xcc\x01\n\x11GetEncryptionSpec\x12?.google.cloud.contactcenterinsights.v1.GetEncryptionSpecRequest\x1a\x35.google.cloud.contactcenterinsights.v1.EncryptionSpec\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{name=projects/*/locations/*/encryptionSpec}\x12\xb3\x02\n\x18InitializeEncryptionSpec\x12\x46.google.cloud.contactcenterinsights.v1.InitializeEncryptionSpecRequest\x1a\x1d.google.longrunning.Operation\"\xaf\x01\xca\x41\x44\n InitializeEncryptionSpecResponse\x12 InitializeEncryptionSpecMetadata\xda\x41\x0f\x65ncryption_spec\x82\xd3\xe4\x93\x02P\"K/v1/{encryption_spec.name=projects/*/locations/*/encryptionSpec}:initialize:\x01*\x12\xba\x01\n\nCreateView\x12\x38.google.cloud.contactcenterinsights.v1.CreateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"E\xda\x41\x0bparent,view\x82\xd3\xe4\x93\x02\x31\")/v1/{parent=projects/*/locations/*}/views:\x04view\x12\xa7\x01\n\x07GetView\x12\x35.google.cloud.contactcenterinsights.v1.GetViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"8\xda\x41\x04name\x82\xd3\xe4\x93\x02+\x12)/v1/{name=projects/*/locations/*/views/*}\x12\xba\x01\n\tListViews\x12\x37.google.cloud.contactcenterinsights.v1.ListViewsRequest\x1a\x38.google.cloud.contactcenterinsights.v1.ListViewsResponse\":\xda\x41\x06parent\x82\xd3\xe4\x93\x02+\x12)/v1/{parent=projects/*/locations/*}/views\x12\xc4\x01\n\nUpdateView\x12\x38.google.cloud.contactcenterinsights.v1.UpdateViewRequest\x1a+.google.cloud.contactcenterinsights.v1.View\"O\xda\x41\x10view,update_mask\x82\xd3\xe4\x93\x02\x36\x32./v1/{view.name=projects/*/locations/*/views/*}:\x04view\x12\x98\x01\n\nDeleteView\x12\x38.google.cloud.contactcenterinsights.v1.DeleteViewRequest\x1a\x16.google.protobuf.Empty\"8\xda\x41\x04name\x82\xd3\xe4\x93\x02+*)/v1/{name=projects/*/locations/*/views/*}\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
|
|
@@ -103,6 +103,14 @@ module Google
|
|
103
103
|
UndeployIssueModelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest").msgclass
|
104
104
|
UndeployIssueModelResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UndeployIssueModelResponse").msgclass
|
105
105
|
UndeployIssueModelMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UndeployIssueModelMetadata").msgclass
|
106
|
+
ExportIssueModelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportIssueModelRequest").msgclass
|
107
|
+
ExportIssueModelRequest::GcsDestination = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportIssueModelRequest.GcsDestination").msgclass
|
108
|
+
ExportIssueModelResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportIssueModelResponse").msgclass
|
109
|
+
ExportIssueModelMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportIssueModelMetadata").msgclass
|
110
|
+
ImportIssueModelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ImportIssueModelRequest").msgclass
|
111
|
+
ImportIssueModelRequest::GcsSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ImportIssueModelRequest.GcsSource").msgclass
|
112
|
+
ImportIssueModelResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ImportIssueModelResponse").msgclass
|
113
|
+
ImportIssueModelMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ImportIssueModelMetadata").msgclass
|
106
114
|
GetIssueRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetIssueRequest").msgclass
|
107
115
|
ListIssuesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListIssuesRequest").msgclass
|
108
116
|
ListIssuesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListIssuesResponse").msgclass
|
@@ -118,6 +126,10 @@ module Google
|
|
118
126
|
UpdatePhraseMatcherRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UpdatePhraseMatcherRequest").msgclass
|
119
127
|
GetSettingsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetSettingsRequest").msgclass
|
120
128
|
UpdateSettingsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UpdateSettingsRequest").msgclass
|
129
|
+
GetEncryptionSpecRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetEncryptionSpecRequest").msgclass
|
130
|
+
InitializeEncryptionSpecRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.InitializeEncryptionSpecRequest").msgclass
|
131
|
+
InitializeEncryptionSpecResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.InitializeEncryptionSpecResponse").msgclass
|
132
|
+
InitializeEncryptionSpecMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.InitializeEncryptionSpecMetadata").msgclass
|
121
133
|
CreateViewRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CreateViewRequest").msgclass
|
122
134
|
GetViewRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetViewRequest").msgclass
|
123
135
|
ListViewsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListViewsRequest").msgclass
|
@@ -34,9 +34,11 @@ module Google
|
|
34
34
|
self.service_name = 'google.cloud.contactcenterinsights.v1.ContactCenterInsights'
|
35
35
|
|
36
36
|
# Creates a conversation.
|
37
|
+
# Note that this method does not support audio transcription or redaction.
|
38
|
+
# Use `conversations.upload` instead.
|
37
39
|
rpc :CreateConversation, ::Google::Cloud::ContactCenterInsights::V1::CreateConversationRequest, ::Google::Cloud::ContactCenterInsights::V1::Conversation
|
38
|
-
# Create a
|
39
|
-
# from CreateConversation by allowing audio transcription and optional DLP
|
40
|
+
# Create a long-running conversation upload operation. This method differs
|
41
|
+
# from `CreateConversation` by allowing audio transcription and optional DLP
|
40
42
|
# redaction.
|
41
43
|
rpc :UploadConversation, ::Google::Cloud::ContactCenterInsights::V1::UploadConversationRequest, ::Google::Longrunning::Operation
|
42
44
|
# Updates a conversation.
|
@@ -81,6 +83,10 @@ module Google
|
|
81
83
|
# Undeploys an issue model.
|
82
84
|
# An issue model can not be used in analysis after it has been undeployed.
|
83
85
|
rpc :UndeployIssueModel, ::Google::Cloud::ContactCenterInsights::V1::UndeployIssueModelRequest, ::Google::Longrunning::Operation
|
86
|
+
# Exports an issue model to the provided destination.
|
87
|
+
rpc :ExportIssueModel, ::Google::Cloud::ContactCenterInsights::V1::ExportIssueModelRequest, ::Google::Longrunning::Operation
|
88
|
+
# Imports an issue model from a Cloud Storage bucket.
|
89
|
+
rpc :ImportIssueModel, ::Google::Cloud::ContactCenterInsights::V1::ImportIssueModelRequest, ::Google::Longrunning::Operation
|
84
90
|
# Gets an issue.
|
85
91
|
rpc :GetIssue, ::Google::Cloud::ContactCenterInsights::V1::GetIssueRequest, ::Google::Cloud::ContactCenterInsights::V1::Issue
|
86
92
|
# Lists issues.
|
@@ -107,6 +113,14 @@ module Google
|
|
107
113
|
rpc :GetSettings, ::Google::Cloud::ContactCenterInsights::V1::GetSettingsRequest, ::Google::Cloud::ContactCenterInsights::V1::Settings
|
108
114
|
# Updates project-level settings.
|
109
115
|
rpc :UpdateSettings, ::Google::Cloud::ContactCenterInsights::V1::UpdateSettingsRequest, ::Google::Cloud::ContactCenterInsights::V1::Settings
|
116
|
+
# Gets location-level encryption key specification.
|
117
|
+
rpc :GetEncryptionSpec, ::Google::Cloud::ContactCenterInsights::V1::GetEncryptionSpecRequest, ::Google::Cloud::ContactCenterInsights::V1::EncryptionSpec
|
118
|
+
# Initializes a location-level encryption key specification. An error will
|
119
|
+
# be thrown if the location has resources already created before the
|
120
|
+
# initialization. Once the encryption specification is initialized at a
|
121
|
+
# location, it is immutable and all newly created resources under the
|
122
|
+
# location will be encrypted with the existing specification.
|
123
|
+
rpc :InitializeEncryptionSpec, ::Google::Cloud::ContactCenterInsights::V1::InitializeEncryptionSpecRequest, ::Google::Longrunning::Operation
|
110
124
|
# Creates a view.
|
111
125
|
rpc :CreateView, ::Google::Cloud::ContactCenterInsights::V1::CreateViewRequest, ::Google::Cloud::ContactCenterInsights::V1::View
|
112
126
|
# Gets a view.
|