google-cloud-contact_center_insights-v1 0.3.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardopts +1 -1
- data/AUTHENTICATION.md +7 -25
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/client.rb +1203 -87
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/operations.rb +115 -12
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/paths.rb +19 -0
- data/lib/google/cloud/contact_center_insights/v1/version.rb +1 -1
- data/lib/google/cloud/contactcenterinsights/v1/contact_center_insights_pb.rb +44 -2
- data/lib/google/cloud/contactcenterinsights/v1/contact_center_insights_services_pb.rb +13 -1
- data/lib/google/cloud/contactcenterinsights/v1/resources_pb.rb +20 -3
- data/proto_docs/google/api/resource.rb +10 -71
- data/proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb +127 -6
- data/proto_docs/google/cloud/contactcenterinsights/v1/resources.rb +54 -2
- metadata +3 -3
@@ -143,6 +143,27 @@ module Google
|
|
143
143
|
#
|
144
144
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
145
145
|
#
|
146
|
+
# @example Basic example
|
147
|
+
# require "google/longrunning"
|
148
|
+
#
|
149
|
+
# # Create a client object. The client can be reused for multiple calls.
|
150
|
+
# client = Google::Longrunning::Operations::Client.new
|
151
|
+
#
|
152
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
153
|
+
# request = Google::Longrunning::ListOperationsRequest.new
|
154
|
+
#
|
155
|
+
# # Call the list_operations method.
|
156
|
+
# result = client.list_operations request
|
157
|
+
#
|
158
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
159
|
+
# # iterate over all elements by calling #each, and the enumerable
|
160
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
161
|
+
# # methods are also available for managing paging directly.
|
162
|
+
# result.each do |response|
|
163
|
+
# # Each element is of type ::Google::Longrunning::Operation.
|
164
|
+
# p response
|
165
|
+
# end
|
166
|
+
#
|
146
167
|
def list_operations request, options = nil
|
147
168
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
148
169
|
|
@@ -160,9 +181,11 @@ module Google
|
|
160
181
|
gapic_version: ::Google::Cloud::ContactCenterInsights::V1::VERSION
|
161
182
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
162
183
|
|
163
|
-
header_params = {
|
164
|
-
|
165
|
-
|
184
|
+
header_params = {}
|
185
|
+
if request.name
|
186
|
+
header_params["name"] = request.name
|
187
|
+
end
|
188
|
+
|
166
189
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
167
190
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
168
191
|
|
@@ -215,6 +238,28 @@ module Google
|
|
215
238
|
#
|
216
239
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
217
240
|
#
|
241
|
+
# @example Basic example
|
242
|
+
# require "google/longrunning"
|
243
|
+
#
|
244
|
+
# # Create a client object. The client can be reused for multiple calls.
|
245
|
+
# client = Google::Longrunning::Operations::Client.new
|
246
|
+
#
|
247
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
248
|
+
# request = Google::Longrunning::GetOperationRequest.new
|
249
|
+
#
|
250
|
+
# # Call the get_operation method.
|
251
|
+
# result = client.get_operation request
|
252
|
+
#
|
253
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
254
|
+
# # object to check the status of an operation, cancel it, or wait
|
255
|
+
# # for results. Here is how to block until completion:
|
256
|
+
# result.wait_until_done! timeout: 60
|
257
|
+
# if result.response?
|
258
|
+
# p result.response
|
259
|
+
# else
|
260
|
+
# puts "Error!"
|
261
|
+
# end
|
262
|
+
#
|
218
263
|
def get_operation request, options = nil
|
219
264
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
220
265
|
|
@@ -232,9 +277,11 @@ module Google
|
|
232
277
|
gapic_version: ::Google::Cloud::ContactCenterInsights::V1::VERSION
|
233
278
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
234
279
|
|
235
|
-
header_params = {
|
236
|
-
|
237
|
-
|
280
|
+
header_params = {}
|
281
|
+
if request.name
|
282
|
+
header_params["name"] = request.name
|
283
|
+
end
|
284
|
+
|
238
285
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
239
286
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
240
287
|
|
@@ -287,6 +334,21 @@ module Google
|
|
287
334
|
#
|
288
335
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
289
336
|
#
|
337
|
+
# @example Basic example
|
338
|
+
# require "google/longrunning"
|
339
|
+
#
|
340
|
+
# # Create a client object. The client can be reused for multiple calls.
|
341
|
+
# client = Google::Longrunning::Operations::Client.new
|
342
|
+
#
|
343
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
344
|
+
# request = Google::Longrunning::DeleteOperationRequest.new
|
345
|
+
#
|
346
|
+
# # Call the delete_operation method.
|
347
|
+
# result = client.delete_operation request
|
348
|
+
#
|
349
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
350
|
+
# p result
|
351
|
+
#
|
290
352
|
def delete_operation request, options = nil
|
291
353
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
292
354
|
|
@@ -304,9 +366,11 @@ module Google
|
|
304
366
|
gapic_version: ::Google::Cloud::ContactCenterInsights::V1::VERSION
|
305
367
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
306
368
|
|
307
|
-
header_params = {
|
308
|
-
|
309
|
-
|
369
|
+
header_params = {}
|
370
|
+
if request.name
|
371
|
+
header_params["name"] = request.name
|
372
|
+
end
|
373
|
+
|
310
374
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
311
375
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
312
376
|
|
@@ -364,6 +428,21 @@ module Google
|
|
364
428
|
#
|
365
429
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
366
430
|
#
|
431
|
+
# @example Basic example
|
432
|
+
# require "google/longrunning"
|
433
|
+
#
|
434
|
+
# # Create a client object. The client can be reused for multiple calls.
|
435
|
+
# client = Google::Longrunning::Operations::Client.new
|
436
|
+
#
|
437
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
438
|
+
# request = Google::Longrunning::CancelOperationRequest.new
|
439
|
+
#
|
440
|
+
# # Call the cancel_operation method.
|
441
|
+
# result = client.cancel_operation request
|
442
|
+
#
|
443
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
444
|
+
# p result
|
445
|
+
#
|
367
446
|
def cancel_operation request, options = nil
|
368
447
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
369
448
|
|
@@ -381,9 +460,11 @@ module Google
|
|
381
460
|
gapic_version: ::Google::Cloud::ContactCenterInsights::V1::VERSION
|
382
461
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
383
462
|
|
384
|
-
header_params = {
|
385
|
-
|
386
|
-
|
463
|
+
header_params = {}
|
464
|
+
if request.name
|
465
|
+
header_params["name"] = request.name
|
466
|
+
end
|
467
|
+
|
387
468
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
388
469
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
389
470
|
|
@@ -444,6 +525,28 @@ module Google
|
|
444
525
|
#
|
445
526
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
446
527
|
#
|
528
|
+
# @example Basic example
|
529
|
+
# require "google/longrunning"
|
530
|
+
#
|
531
|
+
# # Create a client object. The client can be reused for multiple calls.
|
532
|
+
# client = Google::Longrunning::Operations::Client.new
|
533
|
+
#
|
534
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
535
|
+
# request = Google::Longrunning::WaitOperationRequest.new
|
536
|
+
#
|
537
|
+
# # Call the wait_operation method.
|
538
|
+
# result = client.wait_operation request
|
539
|
+
#
|
540
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
541
|
+
# # object to check the status of an operation, cancel it, or wait
|
542
|
+
# # for results. Here is how to block until completion:
|
543
|
+
# result.wait_until_done! timeout: 60
|
544
|
+
# if result.response?
|
545
|
+
# p result.response
|
546
|
+
# else
|
547
|
+
# puts "Error!"
|
548
|
+
# end
|
549
|
+
#
|
447
550
|
def wait_operation request, options = nil
|
448
551
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
449
552
|
|
@@ -202,6 +202,25 @@ module Google
|
|
202
202
|
"projects/#{project}/locations/#{location}/settings"
|
203
203
|
end
|
204
204
|
|
205
|
+
##
|
206
|
+
# Create a fully-qualified View resource string.
|
207
|
+
#
|
208
|
+
# The resource will be in the following format:
|
209
|
+
#
|
210
|
+
# `projects/{project}/locations/{location}/views/{view}`
|
211
|
+
#
|
212
|
+
# @param project [String]
|
213
|
+
# @param location [String]
|
214
|
+
# @param view [String]
|
215
|
+
#
|
216
|
+
# @return [::String]
|
217
|
+
def view_path project:, location:, view:
|
218
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
219
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
220
|
+
|
221
|
+
"projects/#{project}/locations/#{location}/views/#{view}"
|
222
|
+
end
|
223
|
+
|
205
224
|
extend self
|
206
225
|
end
|
207
226
|
end
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/contactcenterinsights/v1/contact_center_insights.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/annotations_pb'
|
7
5
|
require 'google/api/client_pb'
|
8
6
|
require 'google/api/field_behavior_pb'
|
@@ -14,6 +12,8 @@ require 'google/protobuf/empty_pb'
|
|
14
12
|
require 'google/protobuf/field_mask_pb'
|
15
13
|
require 'google/protobuf/timestamp_pb'
|
16
14
|
require 'google/rpc/status_pb'
|
15
|
+
require 'google/protobuf'
|
16
|
+
|
17
17
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
18
18
|
add_file("google/cloud/contactcenterinsights/v1/contact_center_insights.proto", :syntax => :proto3) do
|
19
19
|
add_message "google.cloud.contactcenterinsights.v1.CalculateStatsRequest" do
|
@@ -27,6 +27,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
27
27
|
map :smart_highlighter_matches, :string, :int32, 4
|
28
28
|
map :custom_highlighter_matches, :string, :int32, 5
|
29
29
|
map :issue_matches, :string, :int32, 6
|
30
|
+
map :issue_matches_stats, :string, :message, 8, "google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats"
|
30
31
|
optional :conversation_count_time_series, :message, 7, "google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries"
|
31
32
|
end
|
32
33
|
add_message "google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries" do
|
@@ -94,6 +95,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
94
95
|
optional :parent, :string, 1
|
95
96
|
optional :filter, :string, 3
|
96
97
|
optional :kms_key, :string, 4
|
98
|
+
optional :write_disposition, :enum, 5, "google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.WriteDisposition"
|
97
99
|
oneof :destination do
|
98
100
|
optional :big_query_destination, :message, 2, "google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.BigQueryDestination"
|
99
101
|
end
|
@@ -103,6 +105,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
103
105
|
optional :dataset, :string, 1
|
104
106
|
optional :table, :string, 2
|
105
107
|
end
|
108
|
+
add_enum "google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.WriteDisposition" do
|
109
|
+
value :WRITE_DISPOSITION_UNSPECIFIED, 0
|
110
|
+
value :WRITE_TRUNCATE, 1
|
111
|
+
value :WRITE_APPEND, 2
|
112
|
+
end
|
106
113
|
add_message "google.cloud.contactcenterinsights.v1.ExportInsightsDataMetadata" do
|
107
114
|
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
108
115
|
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
@@ -200,6 +207,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
200
207
|
add_message "google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest" do
|
201
208
|
optional :name, :string, 1
|
202
209
|
end
|
210
|
+
add_message "google.cloud.contactcenterinsights.v1.UpdatePhraseMatcherRequest" do
|
211
|
+
optional :phrase_matcher, :message, 1, "google.cloud.contactcenterinsights.v1.PhraseMatcher"
|
212
|
+
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
213
|
+
end
|
203
214
|
add_message "google.cloud.contactcenterinsights.v1.GetSettingsRequest" do
|
204
215
|
optional :name, :string, 1
|
205
216
|
end
|
@@ -207,6 +218,29 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
207
218
|
optional :settings, :message, 1, "google.cloud.contactcenterinsights.v1.Settings"
|
208
219
|
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
209
220
|
end
|
221
|
+
add_message "google.cloud.contactcenterinsights.v1.CreateViewRequest" do
|
222
|
+
optional :parent, :string, 1
|
223
|
+
optional :view, :message, 2, "google.cloud.contactcenterinsights.v1.View"
|
224
|
+
end
|
225
|
+
add_message "google.cloud.contactcenterinsights.v1.GetViewRequest" do
|
226
|
+
optional :name, :string, 1
|
227
|
+
end
|
228
|
+
add_message "google.cloud.contactcenterinsights.v1.ListViewsRequest" do
|
229
|
+
optional :parent, :string, 1
|
230
|
+
optional :page_size, :int32, 2
|
231
|
+
optional :page_token, :string, 3
|
232
|
+
end
|
233
|
+
add_message "google.cloud.contactcenterinsights.v1.ListViewsResponse" do
|
234
|
+
repeated :views, :message, 1, "google.cloud.contactcenterinsights.v1.View"
|
235
|
+
optional :next_page_token, :string, 2
|
236
|
+
end
|
237
|
+
add_message "google.cloud.contactcenterinsights.v1.UpdateViewRequest" do
|
238
|
+
optional :view, :message, 1, "google.cloud.contactcenterinsights.v1.View"
|
239
|
+
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
240
|
+
end
|
241
|
+
add_message "google.cloud.contactcenterinsights.v1.DeleteViewRequest" do
|
242
|
+
optional :name, :string, 1
|
243
|
+
end
|
210
244
|
add_enum "google.cloud.contactcenterinsights.v1.ConversationView" do
|
211
245
|
value :CONVERSATION_VIEW_UNSPECIFIED, 0
|
212
246
|
value :BASIC, 1
|
@@ -237,6 +271,7 @@ module Google
|
|
237
271
|
DeleteAnalysisRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeleteAnalysisRequest").msgclass
|
238
272
|
ExportInsightsDataRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest").msgclass
|
239
273
|
ExportInsightsDataRequest::BigQueryDestination = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.BigQueryDestination").msgclass
|
274
|
+
ExportInsightsDataRequest::WriteDisposition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.WriteDisposition").enummodule
|
240
275
|
ExportInsightsDataMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportInsightsDataMetadata").msgclass
|
241
276
|
ExportInsightsDataResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportInsightsDataResponse").msgclass
|
242
277
|
CreateIssueModelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CreateIssueModelRequest").msgclass
|
@@ -264,8 +299,15 @@ module Google
|
|
264
299
|
ListPhraseMatchersResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListPhraseMatchersResponse").msgclass
|
265
300
|
GetPhraseMatcherRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetPhraseMatcherRequest").msgclass
|
266
301
|
DeletePhraseMatcherRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest").msgclass
|
302
|
+
UpdatePhraseMatcherRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UpdatePhraseMatcherRequest").msgclass
|
267
303
|
GetSettingsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetSettingsRequest").msgclass
|
268
304
|
UpdateSettingsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UpdateSettingsRequest").msgclass
|
305
|
+
CreateViewRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CreateViewRequest").msgclass
|
306
|
+
GetViewRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetViewRequest").msgclass
|
307
|
+
ListViewsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListViewsRequest").msgclass
|
308
|
+
ListViewsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListViewsResponse").msgclass
|
309
|
+
UpdateViewRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UpdateViewRequest").msgclass
|
310
|
+
DeleteViewRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeleteViewRequest").msgclass
|
269
311
|
ConversationView = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ConversationView").enummodule
|
270
312
|
end
|
271
313
|
end
|
@@ -27,7 +27,7 @@ module Google
|
|
27
27
|
# An API that lets users analyze and explore their business conversation data.
|
28
28
|
class Service
|
29
29
|
|
30
|
-
include GRPC::GenericService
|
30
|
+
include ::GRPC::GenericService
|
31
31
|
|
32
32
|
self.marshal_class_method = :encode
|
33
33
|
self.unmarshal_class_method = :decode
|
@@ -86,12 +86,24 @@ module Google
|
|
86
86
|
rpc :ListPhraseMatchers, ::Google::Cloud::ContactCenterInsights::V1::ListPhraseMatchersRequest, ::Google::Cloud::ContactCenterInsights::V1::ListPhraseMatchersResponse
|
87
87
|
# Deletes a phrase matcher.
|
88
88
|
rpc :DeletePhraseMatcher, ::Google::Cloud::ContactCenterInsights::V1::DeletePhraseMatcherRequest, ::Google::Protobuf::Empty
|
89
|
+
# Updates a phrase matcher.
|
90
|
+
rpc :UpdatePhraseMatcher, ::Google::Cloud::ContactCenterInsights::V1::UpdatePhraseMatcherRequest, ::Google::Cloud::ContactCenterInsights::V1::PhraseMatcher
|
89
91
|
# Gets conversation statistics.
|
90
92
|
rpc :CalculateStats, ::Google::Cloud::ContactCenterInsights::V1::CalculateStatsRequest, ::Google::Cloud::ContactCenterInsights::V1::CalculateStatsResponse
|
91
93
|
# Gets project-level settings.
|
92
94
|
rpc :GetSettings, ::Google::Cloud::ContactCenterInsights::V1::GetSettingsRequest, ::Google::Cloud::ContactCenterInsights::V1::Settings
|
93
95
|
# Updates project-level settings.
|
94
96
|
rpc :UpdateSettings, ::Google::Cloud::ContactCenterInsights::V1::UpdateSettingsRequest, ::Google::Cloud::ContactCenterInsights::V1::Settings
|
97
|
+
# Creates a view.
|
98
|
+
rpc :CreateView, ::Google::Cloud::ContactCenterInsights::V1::CreateViewRequest, ::Google::Cloud::ContactCenterInsights::V1::View
|
99
|
+
# Gets a view.
|
100
|
+
rpc :GetView, ::Google::Cloud::ContactCenterInsights::V1::GetViewRequest, ::Google::Cloud::ContactCenterInsights::V1::View
|
101
|
+
# Lists views.
|
102
|
+
rpc :ListViews, ::Google::Cloud::ContactCenterInsights::V1::ListViewsRequest, ::Google::Cloud::ContactCenterInsights::V1::ListViewsResponse
|
103
|
+
# Updates a view.
|
104
|
+
rpc :UpdateView, ::Google::Cloud::ContactCenterInsights::V1::UpdateViewRequest, ::Google::Cloud::ContactCenterInsights::V1::View
|
105
|
+
# Deletes a view.
|
106
|
+
rpc :DeleteView, ::Google::Cloud::ContactCenterInsights::V1::DeleteViewRequest, ::Google::Protobuf::Empty
|
95
107
|
end
|
96
108
|
|
97
109
|
Stub = Service.rpc_stub_class
|
@@ -1,13 +1,12 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/contactcenterinsights/v1/resources.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/field_behavior_pb'
|
7
5
|
require 'google/api/resource_pb'
|
8
6
|
require 'google/protobuf/duration_pb'
|
9
7
|
require 'google/protobuf/timestamp_pb'
|
10
|
-
require 'google/
|
8
|
+
require 'google/protobuf'
|
9
|
+
|
11
10
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
12
11
|
add_file("google/cloud/contactcenterinsights/v1/resources.proto", :syntax => :proto3) do
|
13
12
|
add_message "google.cloud.contactcenterinsights.v1.Conversation" do
|
@@ -26,6 +25,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
26
25
|
optional :latest_analysis, :message, 12, "google.cloud.contactcenterinsights.v1.Analysis"
|
27
26
|
repeated :runtime_annotations, :message, 13, "google.cloud.contactcenterinsights.v1.RuntimeAnnotation"
|
28
27
|
map :dialogflow_intents, :string, :message, 18, "google.cloud.contactcenterinsights.v1.DialogflowIntent"
|
28
|
+
optional :obfuscated_user_id, :string, 21
|
29
29
|
oneof :metadata do
|
30
30
|
optional :call_metadata, :message, 7, "google.cloud.contactcenterinsights.v1.Conversation.CallMetadata"
|
31
31
|
end
|
@@ -42,12 +42,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
42
42
|
repeated :transcript_segments, :message, 1, "google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment"
|
43
43
|
end
|
44
44
|
add_message "google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment" do
|
45
|
+
optional :message_time, :message, 6, "google.protobuf.Timestamp"
|
45
46
|
optional :text, :string, 1
|
46
47
|
optional :confidence, :float, 2
|
47
48
|
repeated :words, :message, 3, "google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment.WordInfo"
|
48
49
|
optional :language_code, :string, 4
|
49
50
|
optional :channel_tag, :int32, 5
|
50
51
|
optional :segment_participant, :message, 9, "google.cloud.contactcenterinsights.v1.ConversationParticipant"
|
52
|
+
optional :dialogflow_segment_metadata, :message, 10, "google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment.DialogflowSegmentMetadata"
|
53
|
+
optional :sentiment, :message, 11, "google.cloud.contactcenterinsights.v1.SentimentData"
|
51
54
|
end
|
52
55
|
add_message "google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment.WordInfo" do
|
53
56
|
optional :start_offset, :message, 1, "google.protobuf.Duration"
|
@@ -55,6 +58,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
55
58
|
optional :word, :string, 3
|
56
59
|
optional :confidence, :float, 4
|
57
60
|
end
|
61
|
+
add_message "google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment.DialogflowSegmentMetadata" do
|
62
|
+
optional :smart_reply_allowlist_covered, :bool, 1
|
63
|
+
end
|
58
64
|
add_enum "google.cloud.contactcenterinsights.v1.Conversation.Medium" do
|
59
65
|
value :MEDIUM_UNSPECIFIED, 0
|
60
66
|
value :PHONE_CALL, 1
|
@@ -219,6 +225,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
219
225
|
add_message "google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats" do
|
220
226
|
optional :issue, :string, 1
|
221
227
|
optional :labeled_conversations_count, :int64, 2
|
228
|
+
optional :display_name, :string, 3
|
222
229
|
end
|
223
230
|
add_message "google.cloud.contactcenterinsights.v1.PhraseMatcher" do
|
224
231
|
optional :name, :string, 1
|
@@ -331,6 +338,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
331
338
|
end
|
332
339
|
add_message "google.cloud.contactcenterinsights.v1.ConversationParticipant" do
|
333
340
|
optional :dialogflow_participant, :string, 1
|
341
|
+
optional :obfuscated_external_user_id, :string, 3
|
334
342
|
optional :role, :enum, 2, "google.cloud.contactcenterinsights.v1.ConversationParticipant.Role"
|
335
343
|
oneof :participant do
|
336
344
|
optional :dialogflow_participant_name, :string, 5
|
@@ -344,6 +352,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
344
352
|
value :END_USER, 3
|
345
353
|
value :ANY_AGENT, 4
|
346
354
|
end
|
355
|
+
add_message "google.cloud.contactcenterinsights.v1.View" do
|
356
|
+
optional :name, :string, 1
|
357
|
+
optional :display_name, :string, 2
|
358
|
+
optional :create_time, :message, 3, "google.protobuf.Timestamp"
|
359
|
+
optional :update_time, :message, 4, "google.protobuf.Timestamp"
|
360
|
+
optional :value, :string, 5
|
361
|
+
end
|
347
362
|
end
|
348
363
|
end
|
349
364
|
|
@@ -356,6 +371,7 @@ module Google
|
|
356
371
|
Conversation::Transcript = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.Conversation.Transcript").msgclass
|
357
372
|
Conversation::Transcript::TranscriptSegment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment").msgclass
|
358
373
|
Conversation::Transcript::TranscriptSegment::WordInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment.WordInfo").msgclass
|
374
|
+
Conversation::Transcript::TranscriptSegment::DialogflowSegmentMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.Conversation.Transcript.TranscriptSegment.DialogflowSegmentMetadata").msgclass
|
359
375
|
Conversation::Medium = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.Conversation.Medium").enummodule
|
360
376
|
Analysis = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.Analysis").msgclass
|
361
377
|
ConversationDataSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ConversationDataSource").msgclass
|
@@ -405,6 +421,7 @@ module Google
|
|
405
421
|
DialogflowInteractionData = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DialogflowInteractionData").msgclass
|
406
422
|
ConversationParticipant = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ConversationParticipant").msgclass
|
407
423
|
ConversationParticipant::Role = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ConversationParticipant.Role").enummodule
|
424
|
+
View = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.View").msgclass
|
408
425
|
end
|
409
426
|
end
|
410
427
|
end
|
@@ -33,11 +33,7 @@ module Google
|
|
33
33
|
# // For Kubernetes resources, the format is {api group}/{kind}.
|
34
34
|
# option (google.api.resource) = {
|
35
35
|
# type: "pubsub.googleapis.com/Topic"
|
36
|
-
#
|
37
|
-
# pattern: "projects/{project}/topics/{topic}"
|
38
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
39
|
-
# parent_name_extractor: "projects/{project}"
|
40
|
-
# }
|
36
|
+
# pattern: "projects/{project}/topics/{topic}"
|
41
37
|
# };
|
42
38
|
# }
|
43
39
|
#
|
@@ -45,10 +41,7 @@ module Google
|
|
45
41
|
#
|
46
42
|
# resources:
|
47
43
|
# - type: "pubsub.googleapis.com/Topic"
|
48
|
-
#
|
49
|
-
# - pattern: "projects/{project}/topics/{topic}"
|
50
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
51
|
-
# parent_name_extractor: "projects/{project}"
|
44
|
+
# pattern: "projects/{project}/topics/{topic}"
|
52
45
|
#
|
53
46
|
# Sometimes, resources have multiple patterns, typically because they can
|
54
47
|
# live under multiple parents.
|
@@ -58,26 +51,10 @@ module Google
|
|
58
51
|
# message LogEntry {
|
59
52
|
# option (google.api.resource) = {
|
60
53
|
# type: "logging.googleapis.com/LogEntry"
|
61
|
-
#
|
62
|
-
#
|
63
|
-
#
|
64
|
-
#
|
65
|
-
# }
|
66
|
-
# name_descriptor: {
|
67
|
-
# pattern: "folders/{folder}/logs/{log}"
|
68
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
69
|
-
# parent_name_extractor: "folders/{folder}"
|
70
|
-
# }
|
71
|
-
# name_descriptor: {
|
72
|
-
# pattern: "organizations/{organization}/logs/{log}"
|
73
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Organization"
|
74
|
-
# parent_name_extractor: "organizations/{organization}"
|
75
|
-
# }
|
76
|
-
# name_descriptor: {
|
77
|
-
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
78
|
-
# parent_type: "billing.googleapis.com/BillingAccount"
|
79
|
-
# parent_name_extractor: "billingAccounts/{billing_account}"
|
80
|
-
# }
|
54
|
+
# pattern: "projects/{project}/logs/{log}"
|
55
|
+
# pattern: "folders/{folder}/logs/{log}"
|
56
|
+
# pattern: "organizations/{organization}/logs/{log}"
|
57
|
+
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
81
58
|
# };
|
82
59
|
# }
|
83
60
|
#
|
@@ -85,48 +62,10 @@ module Google
|
|
85
62
|
#
|
86
63
|
# resources:
|
87
64
|
# - type: 'logging.googleapis.com/LogEntry'
|
88
|
-
#
|
89
|
-
#
|
90
|
-
#
|
91
|
-
#
|
92
|
-
# - pattern: "folders/{folder}/logs/{log}"
|
93
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
94
|
-
# parent_name_extractor: "folders/{folder}"
|
95
|
-
# - pattern: "organizations/{organization}/logs/{log}"
|
96
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Organization"
|
97
|
-
# parent_name_extractor: "organizations/{organization}"
|
98
|
-
# - pattern: "billingAccounts/{billing_account}/logs/{log}"
|
99
|
-
# parent_type: "billing.googleapis.com/BillingAccount"
|
100
|
-
# parent_name_extractor: "billingAccounts/{billing_account}"
|
101
|
-
#
|
102
|
-
# For flexible resources, the resource name doesn't contain parent names, but
|
103
|
-
# the resource itself has parents for policy evaluation.
|
104
|
-
#
|
105
|
-
# Example:
|
106
|
-
#
|
107
|
-
# message Shelf {
|
108
|
-
# option (google.api.resource) = {
|
109
|
-
# type: "library.googleapis.com/Shelf"
|
110
|
-
# name_descriptor: {
|
111
|
-
# pattern: "shelves/{shelf}"
|
112
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
113
|
-
# }
|
114
|
-
# name_descriptor: {
|
115
|
-
# pattern: "shelves/{shelf}"
|
116
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
117
|
-
# }
|
118
|
-
# };
|
119
|
-
# }
|
120
|
-
#
|
121
|
-
# The ResourceDescriptor Yaml config will look like:
|
122
|
-
#
|
123
|
-
# resources:
|
124
|
-
# - type: 'library.googleapis.com/Shelf'
|
125
|
-
# name_descriptor:
|
126
|
-
# - pattern: "shelves/{shelf}"
|
127
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
128
|
-
# - pattern: "shelves/{shelf}"
|
129
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
65
|
+
# pattern: "projects/{project}/logs/{log}"
|
66
|
+
# pattern: "folders/{folder}/logs/{log}"
|
67
|
+
# pattern: "organizations/{organization}/logs/{log}"
|
68
|
+
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
130
69
|
# @!attribute [rw] type
|
131
70
|
# @return [::String]
|
132
71
|
# The resource type. It must be in the format of
|